premake4.lua 219 B

1234567891011121314151617
  1. project "BulletWorldImporter"
  2. kind "StaticLib"
  3. includedirs {
  4. "../BulletFileLoader",
  5. "../../../src"
  6. }
  7. if os.is("Linux") then
  8. buildoptions{"-fPIC"}
  9. end
  10. files {
  11. "**.cpp",
  12. "**.h"
  13. }