mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 16:57:16 +01:00
21 lines
752 B
CMake
21 lines
752 B
CMake
|
# Create library
|
||
|
add_library(SimpleSocket STATIC
|
||
|
include/Host.h
|
||
|
include/StatTimer.h
|
||
|
include/ActiveSocket.h ActiveSocket.cpp
|
||
|
include/PassiveSocket.h PassiveSocket.cpp
|
||
|
include/SimpleSocket.h SimpleSocket.cpp
|
||
|
)
|
||
|
# Configure include folders
|
||
|
target_include_directories(SimpleSocket PRIVATE ${CMAKE_CURRENT_LIST_DIR})
|
||
|
target_include_directories(SimpleSocket PUBLIC ${CMAKE_CURRENT_LIST_DIR}/include)
|
||
|
# Configure macro options
|
||
|
target_compile_definitions(SimpleSocket PRIVATE _WIN32_WINNT=0x0601)
|
||
|
# OS and compiler checks.
|
||
|
if(UNIX)
|
||
|
target_compile_definitions(SimpleSocket PRIVATE _LINUX=1)
|
||
|
elseif(WIN32)
|
||
|
target_compile_definitions(SimpleSocket PRIVATE WIN32=1 _WIN32=1)
|
||
|
target_link_libraries(SimpleSocket PUBLIC Ws2_32)
|
||
|
endif()
|