mirror of
https://gitea.invidious.io/iv-org/litespeed-quic.git
synced 2024-08-15 00:53:43 +00:00
Rename test/unittests to tests/ and test/ to bin/
This commit is contained in:
parent
ecfd688117
commit
9a690580c9
92 changed files with 38 additions and 39 deletions
26
bin/CMakeLists.txt
Normal file
26
bin/CMakeLists.txt
Normal file
|
@ -0,0 +1,26 @@
|
|||
# Copyright (c) 2017 - 2020 LiteSpeed Technologies Inc. See LICENSE.
|
||||
INCLUDE(CheckFunctionExists)
|
||||
CHECK_FUNCTION_EXISTS(sendmmsg HAVE_SENDMMSG)
|
||||
CHECK_FUNCTION_EXISTS(recvmmsg HAVE_RECVMMSG)
|
||||
CHECK_FUNCTION_EXISTS(open_memstream HAVE_OPEN_MEMSTREAM)
|
||||
|
||||
|
||||
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
|
||||
)
|
||||
|
||||
INCLUDE(CheckIncludeFiles)
|
||||
|
||||
CHECK_INCLUDE_FILES(regex.h HAVE_REGEX)
|
||||
|
||||
CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/test_config.h.in ${CMAKE_CURRENT_SOURCE_DIR}/test_config.h)
|
Loading…
Add table
Add a link
Reference in a new issue