mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-22 13:44:44 +00:00
23 lines
236 B
Lua
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",
|
||
|
|
}
|
||
|
|
|