bullet3/examples/ThirdPartyLibs/enet/premake4.lua

32 lines
433 B
Lua
Raw Normal View History

2015-05-05 19:51:38 +00:00
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"
}