bullet3/test/enet/nat_punchthrough/server/premake4.lua
erwincoumans 9708392322 work-in-progress
add UDP network connection for physics client <-> server.
also set spinning friction in rolling friction demo (otherwise objects may keep on spinning forever)
2016-11-04 13:15:10 -07:00

27 lines
352 B
Lua

project ("Test_enet_nat_punchthrough_server")
language "C++"
kind "ConsoleApp"
includedirs {"../../../../examples/ThirdPartyLibs/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",
}