libwebsockets/minimal-examples/client/binance/CMakeLists.txt
2023-12-08 13:23:04 +00:00

48 lines
1.3 KiB
CMake

project(lws-minimal-ss-binance C)
cmake_minimum_required(VERSION 3.5)
find_package(libwebsockets CONFIG REQUIRED)
set(SRCS main.c binance-ss.c)
require_lws_config(LWS_ROLE_WS 1 requirements)
require_lws_config(LWS_WITH_CLIENT 1 requirements)
require_lws_config(LWS_WITHOUT_EXTENSIONS 0 requirements)
require_lws_config(LWS_WITH_SECURE_STREAMS 1 requirements)
require_lws_config(LWS_WITH_TLS 1 requirements)
require_lws_config(LWS_WITH_SECURE_STREAMS_PROXY_API 1 has_ss_proxy)
if (requirements)
add_executable(${PROJECT_NAME} ${SRCS})
if (websockets_shared)
target_link_libraries(${PROJECT_NAME}
websockets_shared
${LIBWEBSOCKETS_DEP_LIBS})
add_dependencies(${PROJECT_NAME} websockets_shared)
else()
target_link_libraries(${PROJECT_NAME}
websockets
${LIBWEBSOCKETS_DEP_LIBS})
endif()
if (HAS_LWS_WITH_SECURE_STREAMS_PROXY_API OR has_ss_proxy OR
LWS_WITH_SECURE_STREAMS_PROXY_API)
add_compile_options(-DLWS_SS_USE_SSPC)
add_executable(${PROJECT_NAME}-client ${SRCS})
if (websockets_shared)
target_link_libraries(${PROJECT_NAME}-client
websockets_shared
${LIBWEBSOCKETS_DEP_LIBS})
add_dependencies(${PROJECT_NAME}-client
websockets_shared)
else()
target_link_libraries(${PROJECT_NAME}-client
websockets
${LIBWEBSOCKETS_DEP_LIBS})
endif()
endif()
endif()