premake4.lua 190 B

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