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

30
btgui/enet/premake4.lua Normal file
View File

@@ -0,0 +1,30 @@
project "enet"
kind "StaticLib"
if os.is("Windows") then
defines { "WIN32" }
files{"win32.c"}
end
if os.is("Linux") then
files {"unix.c",}
end
if os.is("MacOSX") then
files{"unix.c"}
end
targetdir "../../lib"
includedirs {
".","include"
}
files {
"callbacks.c",
"compress.c",
"host.c",
"list.c",
"packet.c",
"peer.c",
"protocol.c",
"**.h"
}