16 lines
559 B
CMake
16 lines
559 B
CMake
# xo-websock/CMakeLists.txt
|
|
|
|
set(SELF_LIB websock)
|
|
set(SELF_SRCS EndpointUtil.cpp DynamicEndpoint.cpp WebsockUtil.cpp WebsocketSink.cpp Webserver.cpp)
|
|
|
|
xo_add_shared_library3(${SELF_LIB} ${PROJECT_NAME}Targets ${PROJECT_VERSION} 1 ${SELF_SRCS})
|
|
|
|
# ----------------------------------------------------------------
|
|
# external dependencies
|
|
|
|
xo_dependency(${SELF_LIB} reactor)
|
|
xo_dependency(${SELF_LIB} webutil)
|
|
|
|
# note: changes to xo_dependency() calls here
|
|
# must coordinate with find_dependency() calls in
|
|
# xo-websock/cmake/websockConfig.cmake.in
|