• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1project(lws-minimal-raw-proxy-fallback C)
2cmake_minimum_required(VERSION 2.8.12)
3find_package(libwebsockets CONFIG REQUIRED)
4list(APPEND CMAKE_MODULE_PATH ${LWS_CMAKE_DIR})
5include(CheckCSourceCompiles)
6include(LwsCheckRequirements)
7
8set(SAMP lws-minimal-raw-proxy-fallback)
9set(SRCS minimal-raw-proxy-fallback.c)
10
11# NOTE... if you are building this standalone, you must point LWS_PLUGINS_DIR
12# to the lws plugins dir so it can pick up the plugin source.  Eg,
13# cmake . -DLWS_PLUGINS_DIR=~/libwebsockets/plugins
14
15set(requirements 1)
16require_lws_config(LWS_ROLE_RAW_PROXY 1 requirements)
17
18if (requirements)
19	add_executable(${SAMP} ${SRCS})
20
21	if (LWS_PLUGINS_DIR)
22		include_directories(${LWS_PLUGINS_DIR})
23	endif()
24
25	if (websockets_shared)
26		target_link_libraries(${SAMP} websockets_shared ${LIBWEBSOCKETS_DEP_LIBS})
27		add_dependencies(${SAMP} websockets_shared)
28	else()
29		target_link_libraries(${SAMP} websockets ${LIBWEBSOCKETS_DEP_LIBS})
30	endif()
31endif()
32