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,31 @@
project "enet"
kind "StaticLib"
if os.is("Windows") then
defines { "WIN32" }
files{"win32.c"}
end
if os.is("Linux") then
defines {"HAS_SOCKLEN_T"}
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"
}