blob: b624c8e6b7d7b98e177df0801d6808f123e1ea1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
include_directories(${CMAKE_SOURCE_DIR}/common)
add_library(network STATIC
TcpSocket.cxx)
if(WIN32)
target_link_libraries(network ws2_32)
endif()
if(UNIX)
libtool_create_control_file(network)
endif()
|