first draft of premake/cmake build files for clsocket (tiny cross-platform TCP socket library)
This commit is contained in:
24
examples/ThirdPartyLibs/clsocket/premake4.lua
Normal file
24
examples/ThirdPartyLibs/clsocket/premake4.lua
Normal file
@@ -0,0 +1,24 @@
|
||||
project "clsocket"
|
||||
|
||||
kind "StaticLib"
|
||||
|
||||
if os.is("Windows") then
|
||||
defines { "WIN32","_WINSOCK_DEPRECATED_NO_WARNINGS" }
|
||||
end
|
||||
if os.is("Linux") then
|
||||
defines {"HAS_SOCKLEN_T","_LINUX"}
|
||||
end
|
||||
if os.is("MacOSX") then
|
||||
defines {"HAS_SOCKLEN_T","_DARWIN"}
|
||||
end
|
||||
|
||||
|
||||
includedirs {
|
||||
".","include"
|
||||
}
|
||||
files {
|
||||
"src/SimpleSocket.cpp",
|
||||
"src/ActiveSocket.cpp",
|
||||
"src/PassiveSocket.cpp",
|
||||
"**.h"
|
||||
}
|
||||
Reference in New Issue
Block a user