add enet for some client/server tests
This commit is contained in:
26
test/enet/server/premake4.lua
Normal file
26
test/enet/server/premake4.lua
Normal file
@@ -0,0 +1,26 @@
|
||||
|
||||
|
||||
project ("Test_enet_server")
|
||||
|
||||
language "C++"
|
||||
|
||||
kind "ConsoleApp"
|
||||
targetdir "../../../bin"
|
||||
includedirs {"../../../examples/ThirdPartyLibs/enet/include"}
|
||||
|
||||
if os.is("Windows") then
|
||||
defines { "WIN32" }
|
||||
|
||||
links {"Ws2_32","Winmm"}
|
||||
end
|
||||
if os.is("Linux") then
|
||||
end
|
||||
if os.is("MacOSX") then
|
||||
end
|
||||
|
||||
links {"enet"}
|
||||
|
||||
files {
|
||||
"main.cpp",
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user