add enet for some client/server tests

This commit is contained in:
=
2015-05-05 12:51:38 -07:00
parent 3da8dbce1c
commit 7eec0dc57d
25 changed files with 6496 additions and 1 deletions

View 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",
}