mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-21 21:24:46 +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",
|
|
}
|
|
|