mirror of
https://gitea.invidious.io/iv-org/litespeed-quic.git
synced 2024-08-15 00:53:43 +00:00
e019799402
- Add support for Mac OS - Add support for Raspberry Pi - Fix BoringSSL compilation: include <openssl/hmac.h> explicitly
23 lines
412 B
CMake
23 lines
412 B
CMake
# Copyright (c) 2017 LiteSpeed Technologies Inc. See LICENSE.
|
|
|
|
INCLUDE(CheckSymbolExists)
|
|
|
|
CHECK_SYMBOL_EXISTS(
|
|
IP_MTU_DISCOVER
|
|
"netinet/in.h"
|
|
HAVE_IP_MTU_DISCOVER
|
|
)
|
|
|
|
CHECK_SYMBOL_EXISTS(
|
|
IP_DONTFRAG
|
|
"netinet/in.h"
|
|
HAVE_IP_DONTFRAG
|
|
)
|
|
|
|
|
|
CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/test_config.h.in ${CMAKE_CURRENT_SOURCE_DIR}/test_config.h)
|
|
|
|
|
|
add_subdirectory(unittests)
|
|
|
|
enable_testing()
|