2018-03-06 09:39:27 +08:00
|
|
|
cmake_minimum_required(VERSION 2.8.9)
|
2018-03-17 06:43:12 +08:00
|
|
|
include(CheckSymbolExists)
|
2018-03-06 09:39:27 +08:00
|
|
|
|
|
|
|
set(SAMP lws-minimal-ws-server-pmd)
|
|
|
|
set(SRCS minimal-ws-server-pmd.c)
|
|
|
|
|
2018-03-17 06:43:12 +08:00
|
|
|
# If we are being built as part of lws, confirm current build config supports
|
|
|
|
# reqconfig, else skip building ourselves.
|
|
|
|
#
|
|
|
|
# If we are being built externally, confirm installed lws was configured to
|
|
|
|
# support reqconfig, else error out with a helpful message about the problem.
|
|
|
|
#
|
|
|
|
MACRO(require_lws_config reqconfig _val result)
|
2018-03-06 09:39:27 +08:00
|
|
|
|
2018-03-17 06:43:12 +08:00
|
|
|
if (DEFINED ${reqconfig})
|
|
|
|
if (${reqconfig})
|
|
|
|
set (rq 1)
|
|
|
|
else()
|
|
|
|
set (rq 0)
|
|
|
|
endif()
|
|
|
|
else()
|
|
|
|
set(rq 0)
|
|
|
|
endif()
|
2018-03-07 07:05:39 +08:00
|
|
|
|
2018-03-17 06:43:12 +08:00
|
|
|
if (${_val} EQUAL ${rq})
|
|
|
|
set(SAME 1)
|
|
|
|
else()
|
|
|
|
set(SAME 0)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if (LWS_WITH_MINIMAL_EXAMPLES AND NOT ${SAME})
|
|
|
|
if (${_val})
|
|
|
|
message("${SAMP}: skipping as lws being built without ${reqconfig}")
|
|
|
|
else()
|
|
|
|
message("${SAMP}: skipping as lws built with ${reqconfig}")
|
|
|
|
endif()
|
|
|
|
set(${result} 0)
|
|
|
|
else()
|
|
|
|
if (LWS_WITH_MINIMAL_EXAMPLES)
|
|
|
|
set(MET ${SAME})
|
|
|
|
else()
|
|
|
|
CHECK_SYMBOL_EXISTS(${reqconfig} libwebsockets.h HAS)
|
|
|
|
if (NOT DEFINED HAS)
|
|
|
|
set(HAS 0)
|
|
|
|
endif()
|
|
|
|
if ((HAS AND ${_val}) OR (NOT HAS AND NOT ${_val}))
|
|
|
|
set(MET 1)
|
|
|
|
else()
|
|
|
|
set(MET 0)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
endif()
|
|
|
|
if (NOT MET)
|
|
|
|
if (${_val})
|
|
|
|
message(FATAL_ERROR "This project requires lws must have been configured with ${reqconfig}")
|
|
|
|
else()
|
|
|
|
message(FATAL_ERROR "Lws configuration of ${reqconfig} is incompatible with this project")
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
endif()
|
|
|
|
ENDMACRO()
|
2018-03-06 09:39:27 +08:00
|
|
|
|
2018-03-17 06:43:12 +08:00
|
|
|
set(requirements 1)
|
|
|
|
require_lws_config(LWS_WITHOUT_SERVER 0 requirements)
|
|
|
|
require_lws_config(LWS_WITHOUT_EXTENSIONS 0 requirements)
|
|
|
|
|
|
|
|
if (requirements)
|
|
|
|
add_executable(${SAMP} ${SRCS})
|
|
|
|
|
|
|
|
if (websockets_shared)
|
|
|
|
target_link_libraries(${SAMP} websockets_shared)
|
|
|
|
add_dependencies(${SAMP} websockets_shared)
|
|
|
|
else()
|
|
|
|
target_link_libraries(${SAMP} websockets)
|
|
|
|
endif()
|
|
|
|
endif()
|