premake4.lua 227 B

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