premake4.lua 202 B

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