26 lines
336 B
Lua
26 lines
336 B
Lua
|
|
|
|
project ("Test_enet_client")
|
|
|
|
language "C++"
|
|
|
|
kind "ConsoleApp"
|
|
targetdir "../../../bin"
|
|
includedirs {"../../../btgui/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",
|
|
}
|
|
|