premake4.lua 182 B

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