premake4.lua 189 B

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