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