premake4.lua 155 B

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