/
redgpu
/
bullet
Обзор
Документация
Войти
/
redgpu
/
bullet
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/clsocket/premake4.lua
53 строки
827 B
Erwin Coumans
more tcp testing
20 фев 2017, 20:52
20 фев 2017, 20:52
c10dfe6
Код
Авторство
О чём код?
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", }