mirror of
https://libwebsockets.org/repo/libwebsockets
synced 2024-12-25 23:00:12 +00:00
50 lines
1.5 KiB
CMake
50 lines
1.5 KiB
CMake
project(lws-minimal-http-client-hugeurl 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-http-client-hugeurl)
|
|
set(SRCS minimal-http-client-hugeurl.c)
|
|
|
|
set(requirements 1)
|
|
require_lws_config(LWS_ROLE_H1 1 requirements)
|
|
require_lws_config(LWS_WITH_CLIENT 1 requirements)
|
|
require_lws_config(LWS_WITH_TLS 1 requirements)
|
|
|
|
if (requirements)
|
|
add_executable(${SAMP} ${SRCS})
|
|
|
|
if (LWS_CTEST_INTERNET_AVAILABLE)
|
|
|
|
#
|
|
# creates a fixture res_hchugeurlw to get a lease on the
|
|
# server resources
|
|
#
|
|
sai_resource(warmcat_conns 1 40 hchugeurlw)
|
|
|
|
add_test(NAME http-client-hugeurl-warmcat COMMAND lws-minimal-http-client-hugeurl )
|
|
add_test(NAME http-client-hugeurl-warmcat-h1 COMMAND lws-minimal-http-client-hugeurl --h1)
|
|
set_tests_properties(http-client-hugeurl-warmcat
|
|
http-client-hugeurl-warmcat-h1
|
|
PROPERTIES
|
|
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/minimal-examples-lowlevel/http-client/minimal-http-client-hugeurl
|
|
TIMEOUT 20)
|
|
if (DEFINED ENV{SAI_OVN})
|
|
set_tests_properties(http-client-hugeurl-warmcat
|
|
http-client-hugeurl-warmcat-h1
|
|
PROPERTIES
|
|
FIXTURES_REQUIRED "res_hchugeurlw")
|
|
endif()
|
|
|
|
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()
|