litespeed-quic/test/CMakeLists.txt

24 lines
412 B
CMake
Raw Normal View History

2017-09-22 21:00:03 +00:00
# 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)
2017-09-22 21:00:03 +00:00
add_subdirectory(unittests)
enable_testing()