premake4.lua 210 B

1234567891011121314151617181920212223
  1. project "App_WavefrontObjLoader"
  2. kind "ConsoleApp"
  3. -- defines { }
  4. targetdir "../../bin"
  5. includedirs
  6. {
  7. ".","../../src"
  8. }
  9. links { "Bullet3Common" }
  10. files {
  11. "**.cpp",
  12. "**.h"
  13. }