premake4.lua 269 B

123456789101112131415
  1. project "BulletInverseDynamics"
  2. kind "StaticLib"
  3. if os.is("Linux") then
  4. buildoptions{"-fPIC"}
  5. end
  6. includedirs {
  7. "..",
  8. }
  9. files {
  10. "IDMath.cpp",
  11. "MultiBodyTree.cpp",
  12. "details/MultiBodyTreeInitCache.cpp",
  13. "details/MultiBodyTreeImpl.cpp",
  14. }