mirror of
https://github.com/warmcat/libwebsockets.git
synced 2025-03-09 00:00:04 +01:00
31 lines
954 B
CMake
31 lines
954 B
CMake
project(lws-minimal-raw-proxy-fallback C)
|
|
cmake_minimum_required(VERSION 3.5)
|
|
find_package(libwebsockets CONFIG REQUIRED)
|
|
list(APPEND CMAKE_MODULE_PATH ${LWS_CMAKE_DIR})
|
|
include(CheckCSourceCompiles)
|
|
include(LwsCheckRequirements)
|
|
|
|
set(SAMP lws-minimal-raw-proxy-fallback)
|
|
set(SRCS minimal-raw-proxy-fallback.c)
|
|
|
|
# NOTE... if you are building this standalone, you must point LWS_PLUGINS_DIR
|
|
# to the lws plugins dir so it can pick up the plugin source. Eg,
|
|
# cmake . -DLWS_PLUGINS_DIR=~/libwebsockets/plugins
|
|
|
|
set(requirements 1)
|
|
require_lws_config(LWS_ROLE_RAW_PROXY 1 requirements)
|
|
|
|
if (requirements)
|
|
add_executable(${SAMP} ${SRCS})
|
|
|
|
if (LWS_PLUGINS_DIR)
|
|
include_directories(${LWS_PLUGINS_DIR})
|
|
endif()
|
|
|
|
if (websockets_shared)
|
|
target_link_libraries(${SAMP} websockets_shared ${LIBWEBSOCKETS_DEP_LIBS})
|
|
add_dependencies(${SAMP} websockets_shared)
|
|
else()
|
|
target_link_libraries(${SAMP} websockets ${LIBWEBSOCKETS_DEP_LIBS})
|
|
endif()
|
|
endif()
|