cpplab/premake/libbmath.lua

23 lines
No EOL
411 B
Lua

project "bmath"
kind "SharedLib"
language "c++"
targetdir "../lib/%{cfg.buildcfg}"
objdir "../obj"
--files {"**.hpp","**.cpp"}
files {
"../src/bmath/**.hpp",
"../src/bmath/**.cpp",
"../src/cpu/**.hpp",
"../src/cpu/**.cpp"
}
filter "configurations:Debug"
defines { "DEBUG" }
symbols "On"
filter "configurations:Release"
defines { "NDEBUG" }
optimize "On"
filter { "system:linux" }