premake4.lua 560 B

123456789101112131415161718192021222324
  1. project "BulletDynamics"
  2. kind "StaticLib"
  3. includedirs {
  4. "..",
  5. }
  6. if os.is("Linux") then
  7. buildoptions{"-fPIC"}
  8. end
  9. files {
  10. "Dynamics/*.cpp",
  11. "Dynamics/*.h",
  12. "ConstraintSolver/*.cpp",
  13. "ConstraintSolver/*.h",
  14. "Featherstone/*.cpp",
  15. "Featherstone/*.h",
  16. "MLCPSolvers/*.cpp",
  17. "MLCPSolvers/*.h",
  18. "Vehicle/*.cpp",
  19. "Vehicle/*.h",
  20. "Character/*.cpp",
  21. "Character/*.h"
  22. }