File: CMakeLists.txt

package info (click to toggle)
libwebsockets 4.3.5-2
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 31,288 kB
  • sloc: ansic: 194,407; javascript: 1,550; sh: 1,387; cpp: 505; java: 461; perl: 405; xml: 118; makefile: 76; awk: 5
file content (28 lines) | stat: -rw-r--r-- 827 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
project(lws-minimal-http-server-eventlib-custom C)
cmake_minimum_required(VERSION 3.10)
find_package(libwebsockets CONFIG REQUIRED)
list(APPEND CMAKE_MODULE_PATH ${LWS_CMAKE_DIR})
include(CheckCSourceCompiles)
include(LwsCheckRequirements)

set(SAMP lws-minimal-http-server-eventlib-custom)
set(SRCS minimal-http-server.c)

if (WIN32)
else()
	set(requirements 1)
	require_lws_config(LWS_ROLE_H1 1 requirements)
	require_lws_config(LWS_WITH_SERVER 1 requirements)
	require_lws_config(LWS_WITH_CLIENT 1 requirements)

	if (requirements)
		add_executable(${SAMP} ${SRCS})

		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()
endif()