mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-25 23:24:46 +00:00
27 lines
332 B
Lua
27 lines
332 B
Lua
|
|
|
|
project ("Test_enet_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",
|
|
}
|
|
|