premake4.lua 189 B

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