premake4.lua 346 B

123456789101112131415161718192021222324252627
  1. project ("Test_clew")
  2. language "C++"
  3. kind "ConsoleApp"
  4. includedirs {"../../src/clew"}
  5. if os.is("Windows") then
  6. defines { "WIN32" }
  7. links {"Ws2_32","Winmm"}
  8. end
  9. if os.is("Linux") then
  10. links {"dl"}
  11. end
  12. if os.is("MacOSX") then
  13. end
  14. files {
  15. "clewTest.cpp",
  16. "../../src/clew/clew.c",
  17. "../../src/clew/clew.h"
  18. }