mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-13 03:33:48 +00:00
25 lines
330 B
Lua
25 lines
330 B
Lua
|
|
|
|
project ("Test_enet_client")
|
|
|
|
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",
|
|
}
|
|
|