premake4.lua 332 B

1234567891011121314151617181920212223242526
  1. project ("Test_enet_server")
  2. language "C++"
  3. kind "ConsoleApp"
  4. includedirs {"../../../examples/ThirdPartyLibs/enet/include"}
  5. if os.is("Windows") then
  6. defines { "WIN32" }
  7. links {"Ws2_32","Winmm"}
  8. end
  9. if os.is("Linux") then
  10. end
  11. if os.is("MacOSX") then
  12. end
  13. links {"enet"}
  14. files {
  15. "main.cpp",
  16. }