add enet test for remote visual debugger

This commit is contained in:
erwin coumans
2013-05-04 19:50:56 -07:00
parent 26873328cf
commit c0a1ad8fcd
24 changed files with 6495 additions and 1 deletions

View File

@@ -0,0 +1,25 @@
project ("Test_enet_client")
language "C++"
kind "ConsoleApp"
targetdir "../../../bin"
includedirs {"../../../btgui/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",
}