bullet3/test/enet/nat_punchthrough/server/premake4.lua

27 lines
352 B
Lua
Raw Normal View History

2015-05-05 19:51:38 +00:00
project ("Test_enet_nat_punchthrough_server")
2015-05-05 19:51:38 +00:00
language "C++"
kind "ConsoleApp"
includedirs {"../../../../examples/ThirdPartyLibs/enet/include"}
2015-05-05 19:51:38 +00:00
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",
}