mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-15 06:00:12 +00:00
23 lines
238 B
Lua
23 lines
238 B
Lua
|
|
project "App_BasicExample"
|
|
|
|
if _OPTIONS["ios"] then
|
|
kind "WindowedApp"
|
|
else
|
|
kind "ConsoleApp"
|
|
end
|
|
|
|
includedirs {"../../src"}
|
|
|
|
links {
|
|
"BulletDynamics","BulletCollision", "LinearMath"
|
|
}
|
|
|
|
language "C++"
|
|
|
|
files {
|
|
"**.cpp",
|
|
"**.h",
|
|
}
|
|
|