Torque3D/Engine/lib/bullet/examples/HelloWorld/premake4.lua
2022-05-13 23:42:41 -04:00

23 lines
236 B
Lua

project "App_HelloWorld"
if _OPTIONS["ios"] then
kind "WindowedApp"
else
kind "ConsoleApp"
end
includedirs {"../../src"}
links {
"BulletDynamics","BulletCollision", "LinearMath"
}
language "C++"
files {
"**.cpp",
"**.h",
}