premake4.lua 236 B

12345678910111213141516171819202122
  1. project "App_HelloWorld"
  2. if _OPTIONS["ios"] then
  3. kind "WindowedApp"
  4. else
  5. kind "ConsoleApp"
  6. end
  7. includedirs {"../../src"}
  8. links {
  9. "BulletDynamics","BulletCollision", "LinearMath"
  10. }
  11. language "C++"
  12. files {
  13. "**.cpp",
  14. "**.h",
  15. }