mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-13 21:30:09 +00:00
57 lines
827 B
Lua
57 lines
827 B
Lua
|
|
|
|
project ("Test_clsocket_EchoServer")
|
|
|
|
language "C++"
|
|
|
|
kind "ConsoleApp"
|
|
|
|
includedirs {"../../examples/ThirdPartyLibs/clsocket/src"}
|
|
|
|
if os.is("Windows") then
|
|
defines { "WIN32" }
|
|
links {"Ws2_32","Winmm"}
|
|
end
|
|
if os.is("Linux") then
|
|
defines {"_LINUX"}
|
|
end
|
|
if os.is("MacOSX") then
|
|
defines {"_DARWIN"}
|
|
end
|
|
|
|
links {"clsocket"}
|
|
|
|
files {
|
|
"EchoServer.cpp",
|
|
}
|
|
|
|
|
|
|
|
|
|
project ("Test_clsocket_QueryDayTime")
|
|
|
|
language "C++"
|
|
|
|
kind "ConsoleApp"
|
|
|
|
includedirs {"../../examples/ThirdPartyLibs/clsocket/src"}
|
|
|
|
if os.is("Windows") then
|
|
defines { "WIN32" }
|
|
links {"Ws2_32","Winmm"}
|
|
end
|
|
|
|
if os.is("Linux") then
|
|
defines {"_LINUX"}
|
|
end
|
|
if os.is("MacOSX") then
|
|
defines {"_DARWIN"}
|
|
end
|
|
|
|
links {"clsocket"}
|
|
|
|
files {
|
|
"QueryDayTime.cpp",
|
|
}
|
|
|