mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-16 06:30:05 +00:00
24 lines
285 B
Lua
24 lines
285 B
Lua
|
|
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",
|
|
}
|
|
|