Saxum/extern/bullet/Test/premake4.lua

24 lines
308 B
Lua
Raw Permalink Normal View History

2014-10-24 09:42:47 +00:00
project "AppUnitTest"
if _OPTIONS["ios"] then
kind "WindowedApp"
else
kind "ConsoleApp"
end
targetdir "bin"
includedirs {"../src","Source", "Source/Tests"}
links {
"BulletDynamics","BulletCollision", "LinearMath"
}
language "C++"
files {
"Source/**.cpp",
"Source/**.h",
}