2019-01-03 16:48:45 +00:00
|
|
|
# Copyright (c) 2017 - 2019 LiteSpeed Technologies Inc. See LICENSE.
|
2017-09-22 21:00:03 +00:00
|
|
|
cmake_minimum_required(VERSION 2.8)
|
|
|
|
|
|
|
|
|
2019-02-01 07:12:06 +00:00
|
|
|
PROJECT(lsquic C)
|
2018-03-12 22:25:01 +00:00
|
|
|
|
2019-01-29 06:55:01 +00:00
|
|
|
IF (CMAKE_SYSTEM_NAME STREQUAL "Linux")
|
|
|
|
# If using older glibc, need to link with -lrt. See clock_getres(2).
|
|
|
|
EXECUTE_PROCESS(
|
|
|
|
COMMAND ${PROJECT_SOURCE_DIR}/print-glibc-version.sh ${CMAKE_C_COMPILER}
|
|
|
|
OUTPUT_VARIABLE GLIBC_VERSION)
|
|
|
|
IF(NOT GLIBC_VERSION EQUAL "" AND GLIBC_VERSION VERSION_LESS 2.17)
|
|
|
|
SET(LIBS ${LIBS} rt)
|
|
|
|
ENDIF()
|
2018-07-10 15:51:45 +00:00
|
|
|
ENDIF()
|
|
|
|
|
2018-10-16 13:03:33 +00:00
|
|
|
IF("${CMAKE_BUILD_TYPE}" STREQUAL "")
|
|
|
|
SET(CMAKE_BUILD_TYPE Debug)
|
2017-09-22 21:00:03 +00:00
|
|
|
ENDIF()
|
|
|
|
|
2018-10-16 13:03:33 +00:00
|
|
|
MESSAGE(STATUS "Build type: ${CMAKE_BUILD_TYPE}")
|
2017-09-22 21:00:03 +00:00
|
|
|
|
2019-10-08 12:36:49 +00:00
|
|
|
OPTION(LSQUIC_FIU "Use Fault Injection in Userspace (FIU)" OFF)
|
|
|
|
|
2019-10-24 13:46:40 +00:00
|
|
|
SET(MY_CMAKE_FLAGS "-DLSQUIC_DEBUG_NEXT_ADV_TICK=1")
|
2018-03-30 14:57:17 +00:00
|
|
|
|
2018-04-19 14:37:58 +00:00
|
|
|
IF (NOT MSVC)
|
2018-03-12 22:25:01 +00:00
|
|
|
|
2017-09-22 21:00:03 +00:00
|
|
|
SET(MY_CMAKE_FLAGS "${MY_CMAKE_FLAGS} -Wall -Wextra -Wno-unused-parameter")
|
|
|
|
SET(MY_CMAKE_FLAGS "${MY_CMAKE_FLAGS} -fno-omit-frame-pointer")
|
2019-09-11 15:27:58 +00:00
|
|
|
INCLUDE(CheckCCompilerFlag)
|
|
|
|
CHECK_C_COMPILER_FLAG(-Wno-implicit-fallthrough HAS_NO_IMPLICIT_FALLTHROUGH)
|
|
|
|
IF (HAS_NO_IMPLICIT_FALLTHROUGH)
|
|
|
|
SET(MY_CMAKE_FLAGS "${MY_CMAKE_FLAGS} -Wno-implicit-fallthrough")
|
|
|
|
ENDIF()
|
2017-09-22 21:00:03 +00:00
|
|
|
|
2017-09-26 15:26:05 +00:00
|
|
|
IF(CMAKE_COMPILER_IS_GNUCC AND CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.9.3)
|
2017-09-22 21:00:03 +00:00
|
|
|
SET(MY_CMAKE_FLAGS "${MY_CMAKE_FLAGS} -Wno-missing-field-initializers")
|
|
|
|
ENDIF()
|
2019-09-11 15:27:58 +00:00
|
|
|
|
2019-10-08 12:36:49 +00:00
|
|
|
IF(LSQUIC_FIU)
|
|
|
|
SET(MY_CMAKE_FLAGS "${MY_CMAKE_FLAGS} -DFIU_ENABLE=1")
|
|
|
|
SET(LIBS ${LIBS} fiu)
|
|
|
|
ENDIF()
|
|
|
|
|
2018-10-16 13:03:33 +00:00
|
|
|
IF(CMAKE_BUILD_TYPE STREQUAL "Debug")
|
2017-09-22 21:00:03 +00:00
|
|
|
SET(MY_CMAKE_FLAGS "${MY_CMAKE_FLAGS} -O0 -g3")
|
2019-09-11 15:27:58 +00:00
|
|
|
SET(MY_CMAKE_FLAGS "${MY_CMAKE_FLAGS} -Werror")
|
2018-04-23 18:13:20 +00:00
|
|
|
IF(CMAKE_C_COMPILER MATCHES "clang" AND
|
|
|
|
NOT "$ENV{TRAVIS}" MATCHES "^true$")
|
2017-09-22 21:00:03 +00:00
|
|
|
SET(MY_CMAKE_FLAGS "${MY_CMAKE_FLAGS} -fsanitize=address")
|
|
|
|
ENDIF()
|
2019-09-11 15:27:58 +00:00
|
|
|
# Uncomment to enable cleartext protocol mode (no crypto):
|
|
|
|
#SET (MY_CMAKE_FLAGS "${MY_CMAKE_FLAGS} -DLSQUIC_ENABLE_HANDSHAKE_DISABLE=1")
|
2017-09-22 21:00:03 +00:00
|
|
|
ELSE()
|
|
|
|
SET(MY_CMAKE_FLAGS "${MY_CMAKE_FLAGS} -O3 -g0")
|
|
|
|
# Comment out the following line to compile out debug messages:
|
|
|
|
#SET(MY_CMAKE_FLAGS "${MY_CMAKE_FLAGS} -DLSQUIC_LOWEST_LOG_LEVEL=LSQ_LOG_INFO")
|
|
|
|
ENDIF()
|
|
|
|
|
2017-09-29 15:18:32 +00:00
|
|
|
IF(LSQUIC_PROFILE EQUAL 1)
|
|
|
|
SET(MY_CMAKE_FLAGS "${MY_CMAKE_FLAGS} -g -pg")
|
|
|
|
ENDIF()
|
|
|
|
|
2018-03-09 19:17:39 +00:00
|
|
|
IF(LSQUIC_COVERAGE EQUAL 1)
|
|
|
|
SET(MY_CMAKE_FLAGS "${MY_CMAKE_FLAGS} -fprofile-arcs -ftest-coverage")
|
|
|
|
ENDIF()
|
|
|
|
|
2017-09-22 21:00:03 +00:00
|
|
|
IF(MY_CMAKE_FLAGS MATCHES "fsanitize=address")
|
|
|
|
MESSAGE(STATUS "AddressSanitizer is ON")
|
|
|
|
ELSE()
|
|
|
|
MESSAGE(STATUS "AddressSanitizer is OFF")
|
|
|
|
ENDIF()
|
|
|
|
|
2018-03-12 22:25:01 +00:00
|
|
|
#MSVC
|
|
|
|
ELSE()
|
2019-01-30 20:28:35 +00:00
|
|
|
SET(MY_CMAKE_FLAGS "${MY_CMAKE_FLAGS} /wd4214") # nonstandard extension used: bit field types other than int
|
2018-03-12 22:25:01 +00:00
|
|
|
SET(MY_CMAKE_FLAGS "${MY_CMAKE_FLAGS} -W4 -WX -Zi -DWIN32_LEAN_AND_MEAN -DNOMINMAX -D_CRT_SECURE_NO_WARNINGS -I${CMAKE_CURRENT_SOURCE_DIR}/wincompat")
|
2018-10-16 13:03:33 +00:00
|
|
|
IF(CMAKE_BUILD_TYPE STREQUAL "Debug")
|
2018-04-02 15:38:44 +00:00
|
|
|
SET(MY_CMAKE_FLAGS "${MY_CMAKE_FLAGS} -Od")
|
2018-03-12 22:25:01 +00:00
|
|
|
#SET (MY_CMAKE_FLAGS "${MY_CMAKE_FLAGS} -DFIU_ENABLE=1")
|
2018-07-10 15:51:45 +00:00
|
|
|
#SET(LIBS ${LIBS} fiu)
|
2018-03-12 22:25:01 +00:00
|
|
|
ELSE()
|
2018-04-02 15:38:44 +00:00
|
|
|
SET(MY_CMAKE_FLAGS "${MY_CMAKE_FLAGS} -Ox")
|
2018-03-12 22:25:01 +00:00
|
|
|
# Comment out the following line to compile out debug messages:
|
|
|
|
#SET(MY_CMAKE_FLAGS "${MY_CMAKE_FLAGS} -DLSQUIC_LOWEST_LOG_LEVEL=LSQ_LOG_INFO")
|
|
|
|
ENDIF()
|
|
|
|
|
|
|
|
ENDIF() #MSVC
|
|
|
|
|
2017-09-22 21:00:03 +00:00
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${MY_CMAKE_FLAGS} $ENV{EXTRA_CFLAGS}")
|
|
|
|
|
|
|
|
MESSAGE(STATUS "Compiler flags: ${CMAKE_C_FLAGS}")
|
|
|
|
|
2019-02-04 13:59:11 +00:00
|
|
|
IF (NOT DEFINED BORINGSSL_INCLUDE AND DEFINED BORINGSSL_DIR)
|
|
|
|
FIND_PATH(BORINGSSL_INCLUDE NAMES openssl/ssl.h
|
|
|
|
PATHS ${BORINGSSL_DIR}/include
|
|
|
|
NO_DEFAULT_PATH)
|
|
|
|
ENDIF()
|
2019-02-01 07:12:06 +00:00
|
|
|
# This must be done before adding other include directories to take
|
|
|
|
# precedence over header files from other SSL installs.
|
2019-02-04 13:59:11 +00:00
|
|
|
|
|
|
|
IF (BORINGSSL_INCLUDE)
|
|
|
|
MESSAGE(STATUS "BoringSSL include directory ${BORINGSSL_INCLUDE}")
|
|
|
|
INCLUDE_DIRECTORIES(${BORINGSSL_INCLUDE})
|
2019-02-01 07:12:06 +00:00
|
|
|
ELSE()
|
|
|
|
MESSAGE(FATAL_ERROR "BoringSSL headers not found")
|
2017-09-26 15:26:05 +00:00
|
|
|
ENDIF()
|
2017-09-22 21:00:03 +00:00
|
|
|
|
2019-02-04 13:59:11 +00:00
|
|
|
IF (NOT DEFINED BORINGSSL_LIB AND DEFINED BORINGSSL_DIR)
|
|
|
|
FOREACH(LIB_NAME ssl crypto decrepit)
|
|
|
|
IF (CMAKE_SYSTEM_NAME STREQUAL Windows)
|
|
|
|
FIND_LIBRARY(BORINGSSL_LIB_${LIB_NAME}
|
|
|
|
NAMES ${LIB_NAME}
|
|
|
|
PATHS ${BORINGSSL_DIR}/${LIB_NAME}
|
|
|
|
PATH_SUFFIXES Debug Release MinSizeRel RelWithDebInfo
|
|
|
|
NO_DEFAULT_PATH)
|
|
|
|
ELSE()
|
|
|
|
FIND_LIBRARY(BORINGSSL_LIB_${LIB_NAME}
|
|
|
|
NAMES lib${LIB_NAME}.a
|
|
|
|
PATHS ${BORINGSSL_DIR}/${LIB_NAME}
|
|
|
|
NO_DEFAULT_PATH)
|
|
|
|
ENDIF()
|
|
|
|
IF(BORINGSSL_LIB_${LIB_NAME})
|
|
|
|
MESSAGE(STATUS "Found ${LIB_NAME} library: ${BORINGSSL_LIB_${LIB_NAME}}")
|
|
|
|
ELSE()
|
|
|
|
MESSAGE(STATUS "${LIB_NAME} library not found")
|
|
|
|
ENDIF()
|
|
|
|
ENDFOREACH()
|
|
|
|
|
|
|
|
ELSE()
|
|
|
|
|
|
|
|
|
|
|
|
FOREACH(LIB_NAME ssl crypto decrepit)
|
|
|
|
IF (CMAKE_SYSTEM_NAME STREQUAL Windows)
|
|
|
|
FIND_LIBRARY(BORINGSSL_LIB_${LIB_NAME}
|
|
|
|
NAMES ${LIB_NAME}
|
|
|
|
PATHS ${BORINGSSL_LIB}
|
|
|
|
PATH_SUFFIXES Debug Release MinSizeRel RelWithDebInfo
|
|
|
|
NO_DEFAULT_PATH)
|
|
|
|
ELSE()
|
|
|
|
FIND_LIBRARY(BORINGSSL_LIB_${LIB_NAME}
|
|
|
|
NAMES lib${LIB_NAME}.a
|
|
|
|
PATHS ${BORINGSSL_LIB}
|
|
|
|
NO_DEFAULT_PATH)
|
|
|
|
ENDIF()
|
|
|
|
IF(BORINGSSL_LIB_${LIB_NAME})
|
|
|
|
MESSAGE(STATUS "Found ${BORINGSSL_LIB} library: ${BORINGSSL_LIB_${LIB_NAME}}")
|
|
|
|
ELSE()
|
|
|
|
MESSAGE(STATUS "${BORINGSSL_LIB} library not found")
|
|
|
|
ENDIF()
|
|
|
|
ENDFOREACH()
|
|
|
|
#endif
|
2018-03-12 22:25:01 +00:00
|
|
|
|
2019-02-04 13:59:11 +00:00
|
|
|
ENDIF()
|
|
|
|
|
|
|
|
SET(CMAKE_INCLUDE_CURRENT_DIR ON)
|
|
|
|
INCLUDE_DIRECTORIES(include src/lshpack)
|
2019-02-01 07:12:06 +00:00
|
|
|
IF(CMAKE_SYSTEM_NAME STREQUAL "FreeBSD" OR CMAKE_SYSTEM_NAME STREQUAL "Darwin")
|
2017-09-22 21:00:03 +00:00
|
|
|
# Find libevent on FreeBSD:
|
2019-02-04 13:59:11 +00:00
|
|
|
include_directories( /usr/local/include )
|
|
|
|
link_directories( /usr/local/lib )
|
2019-02-01 07:12:06 +00:00
|
|
|
ENDIF()
|
|
|
|
|
|
|
|
# Find zlib and libevent header files and library files
|
|
|
|
# TODO: libevent is not strictly necessary to build the library.
|
|
|
|
FIND_PATH(ZLIB_INCLUDE_DIR NAMES zlib.h)
|
|
|
|
IF (ZLIB_INCLUDE_DIR)
|
|
|
|
INCLUDE_DIRECTORIES(${ZLIB_INCLUDE_DIR})
|
|
|
|
ELSE()
|
|
|
|
MESSAGE(FATAL_ERROR "zlib.h was not found")
|
|
|
|
ENDIF()
|
|
|
|
IF (CMAKE_SYSTEM_NAME STREQUAL Windows)
|
|
|
|
FIND_LIBRARY(ZLIB_LIB zlib)
|
|
|
|
ELSEIF(CMAKE_SYSTEM_NAME STREQUAL Darwin)
|
|
|
|
# XXX somehow FIND_LIBRARY() does not find zlib on Travis?
|
|
|
|
SET(ZLIB_LIB z)
|
|
|
|
ELSE()
|
|
|
|
FIND_LIBRARY(ZLIB_LIB libz.a)
|
|
|
|
ENDIF()
|
|
|
|
IF(ZLIB_LIB)
|
|
|
|
MESSAGE(STATUS "Found zlib: ${ZLIB_LIB}")
|
|
|
|
ELSE()
|
|
|
|
MESSAGE(STATUS "zlib not found")
|
|
|
|
ENDIF()
|
|
|
|
FIND_PATH(EVENT_INCLUDE_DIR NAMES event2/event.h)
|
|
|
|
IF (EVENT_INCLUDE_DIR)
|
|
|
|
INCLUDE_DIRECTORIES(${EVENT_INCLUDE_DIR})
|
|
|
|
ELSE()
|
|
|
|
MESSAGE(FATAL_ERROR "event2/event.h was not found")
|
|
|
|
ENDIF()
|
|
|
|
IF (CMAKE_SYSTEM_NAME STREQUAL Windows)
|
|
|
|
FIND_LIBRARY(EVENT_LIB event)
|
|
|
|
ELSE()
|
2019-10-08 12:36:49 +00:00
|
|
|
FIND_LIBRARY(EVENT_LIB libevent.a libevent.so)
|
2019-02-01 07:12:06 +00:00
|
|
|
ENDIF()
|
|
|
|
IF(EVENT_LIB)
|
|
|
|
MESSAGE(STATUS "Found event: ${EVENT_LIB}")
|
|
|
|
ELSE()
|
|
|
|
MESSAGE(STATUS "libevent not found")
|
2017-09-22 21:00:03 +00:00
|
|
|
ENDIF()
|
|
|
|
|
2019-09-11 15:27:58 +00:00
|
|
|
add_executable(http_server test/http_server.c test/prog.c test/test_common.c test/test_cert.c)
|
2019-10-15 21:02:21 +00:00
|
|
|
add_executable(md5_server test/md5_server.c test/prog.c test/test_common.c test/test_cert.c)
|
|
|
|
add_executable(md5_client test/md5_client.c test/prog.c test/test_common.c test/test_cert.c)
|
|
|
|
add_executable(echo_server test/echo_server.c test/prog.c test/test_common.c test/test_cert.c)
|
|
|
|
add_executable(echo_client test/echo_client.c test/prog.c test/test_common.c test/test_cert.c)
|
2019-09-11 15:27:58 +00:00
|
|
|
|
2019-02-04 13:59:11 +00:00
|
|
|
|
|
|
|
SET(LIBS lsquic ${EVENT_LIB} ${BORINGSSL_LIB_ssl} ${BORINGSSL_LIB_crypto} ${ZLIB_LIB} ${LIBS})
|
2018-03-30 14:57:17 +00:00
|
|
|
|
2018-04-19 14:37:58 +00:00
|
|
|
IF (NOT MSVC)
|
2019-09-11 15:27:58 +00:00
|
|
|
|
Latest changes
- [API Change] Sendfile-like functionality is gone. The stream no
longer opens files and deals with file descriptors. (Among other
things, this makes the code more portable.) Three writing functions
are provided:
lsquic_stream_write
lsquic_stream_writev
lsquic_stream_writef (NEW)
lsquic_stream_writef() is given an abstract reader that has function
pointers for size() and read() functions which the user can implement.
This is the most flexible way. lsquic_stream_write() and
lsquic_stream_writev() are now both implemented as wrappers around
lsquic_stream_writef().
- [OPTIMIZATION] When writing to stream, be it within or without the
on_write() callback, place data directly into packet buffer,
bypassing auxiliary data structures. This reduces amount of memory
required, for the amount of data that can be written is limited
by the congestion window.
To support writes outside the on_write() callback, we keep N
outgoing packet buffers per connection which can be written to
by any stream. One half of these are reserved for the highest
priority stream(s), the other half for all other streams. This way,
low-priority streams cannot write instead of high-priority streams
and, on the other hand, low-priority streams get a chance to send
their packets out.
The algorithm is as follows:
- When user writes to stream outside of the callback:
- If this is the highest priority stream, place it onto the
reserved N/2 queue or fail.
(The actual size of this queue is dynamic -- MAX(N/2, CWND) --
rather than N/2, allowing high-priority streams to write as
much as can be sent.)
- If the stream is not the highest priority, try to place the
data onto the reserved N/2 queue or fail.
- When tick occurs *and* more packets can be scheduled:
- Transfer packets from the high N/2 queue to the scheduled
queue.
- If more scheduling is allowed:
- Call on_write callbacks for highest-priority streams,
placing resulting packets directly onto the scheduled queue.
- If more scheduling is allowed:
- Transfer packets from the low N/2 queue to the scheduled
queue.
- If more scheduling is allowed:
- Call on_write callbacks for non-highest-priority streams,
placing resulting packets directly onto the scheduled queue
The number N is currently 20, but it could be varied based on
resource usage.
- If stream is created due to incoming headers, make headers readable
from on_new.
- Outgoing packets are no longer marked non-writeable to prevent placing
more than one STREAM frame from the same stream into a single packet.
This property is maintained via code flow and an explicit check.
Packets for stream data are allocated using a special function.
- STREAM frame elision is cheaper, as we only perform it if a reset
stream has outgoing packets referencing it.
- lsquic_packet_out_t is smaller, as stream_rec elements are now
inside a union.
2017-10-31 13:35:58 +00:00
|
|
|
add_executable(http_client
|
|
|
|
test/http_client.c
|
|
|
|
test/prog.c
|
|
|
|
test/test_common.c
|
2019-09-11 15:27:58 +00:00
|
|
|
test/test_cert.c
|
Latest changes
- [API Change] Sendfile-like functionality is gone. The stream no
longer opens files and deals with file descriptors. (Among other
things, this makes the code more portable.) Three writing functions
are provided:
lsquic_stream_write
lsquic_stream_writev
lsquic_stream_writef (NEW)
lsquic_stream_writef() is given an abstract reader that has function
pointers for size() and read() functions which the user can implement.
This is the most flexible way. lsquic_stream_write() and
lsquic_stream_writev() are now both implemented as wrappers around
lsquic_stream_writef().
- [OPTIMIZATION] When writing to stream, be it within or without the
on_write() callback, place data directly into packet buffer,
bypassing auxiliary data structures. This reduces amount of memory
required, for the amount of data that can be written is limited
by the congestion window.
To support writes outside the on_write() callback, we keep N
outgoing packet buffers per connection which can be written to
by any stream. One half of these are reserved for the highest
priority stream(s), the other half for all other streams. This way,
low-priority streams cannot write instead of high-priority streams
and, on the other hand, low-priority streams get a chance to send
their packets out.
The algorithm is as follows:
- When user writes to stream outside of the callback:
- If this is the highest priority stream, place it onto the
reserved N/2 queue or fail.
(The actual size of this queue is dynamic -- MAX(N/2, CWND) --
rather than N/2, allowing high-priority streams to write as
much as can be sent.)
- If the stream is not the highest priority, try to place the
data onto the reserved N/2 queue or fail.
- When tick occurs *and* more packets can be scheduled:
- Transfer packets from the high N/2 queue to the scheduled
queue.
- If more scheduling is allowed:
- Call on_write callbacks for highest-priority streams,
placing resulting packets directly onto the scheduled queue.
- If more scheduling is allowed:
- Transfer packets from the low N/2 queue to the scheduled
queue.
- If more scheduling is allowed:
- Call on_write callbacks for non-highest-priority streams,
placing resulting packets directly onto the scheduled queue
The number N is currently 20, but it could be varied based on
resource usage.
- If stream is created due to incoming headers, make headers readable
from on_new.
- Outgoing packets are no longer marked non-writeable to prevent placing
more than one STREAM frame from the same stream into a single packet.
This property is maintained via code flow and an explicit check.
Packets for stream data are allocated using a special function.
- STREAM frame elision is cheaper, as we only perform it if a reset
stream has outgoing packets referencing it.
- lsquic_packet_out_t is smaller, as stream_rec elements are now
inside a union.
2017-10-31 13:35:58 +00:00
|
|
|
)
|
2019-02-04 13:59:11 +00:00
|
|
|
LIST(APPEND LIBS pthread m)
|
2017-09-22 21:00:03 +00:00
|
|
|
|
2018-03-13 02:56:06 +00:00
|
|
|
#MSVC
|
2018-03-12 22:25:01 +00:00
|
|
|
ELSE()
|
2019-09-11 15:27:58 +00:00
|
|
|
|
2018-03-12 22:25:01 +00:00
|
|
|
add_executable(http_client
|
|
|
|
test/http_client.c
|
|
|
|
test/prog.c
|
2018-05-07 20:31:15 +00:00
|
|
|
test/test_common.c
|
2018-03-12 22:25:01 +00:00
|
|
|
wincompat/getopt.c
|
|
|
|
wincompat/getopt1.c
|
|
|
|
)
|
2019-02-04 13:59:11 +00:00
|
|
|
LIST(APPEND LIBS ws2_32)
|
2018-03-12 22:25:01 +00:00
|
|
|
|
|
|
|
ENDIF()
|
|
|
|
|
2019-02-04 13:59:11 +00:00
|
|
|
TARGET_LINK_LIBRARIES(http_client ${LIBS})
|
2019-09-11 15:27:58 +00:00
|
|
|
TARGET_LINK_LIBRARIES(http_server ${LIBS})
|
2019-10-15 21:02:21 +00:00
|
|
|
TARGET_LINK_LIBRARIES(md5_server ${LIBS})
|
|
|
|
TARGET_LINK_LIBRARIES(md5_client ${LIBS})
|
|
|
|
TARGET_LINK_LIBRARIES(echo_server ${LIBS})
|
|
|
|
TARGET_LINK_LIBRARIES(echo_client ${LIBS})
|
2017-09-22 21:00:03 +00:00
|
|
|
|
|
|
|
add_subdirectory(src)
|
|
|
|
|
2018-02-26 21:01:16 +00:00
|
|
|
add_subdirectory(test)
|
2017-09-22 21:00:03 +00:00
|
|
|
|
2019-09-11 15:27:58 +00:00
|
|
|
IF(CMAKE_BUILD_TYPE STREQUAL "Debug")
|
2018-02-28 19:25:21 +00:00
|
|
|
# Our test framework relies on assertions, only compile if assertions are
|
|
|
|
# enabled.
|
|
|
|
#
|
|
|
|
enable_testing()
|
|
|
|
ENDIF()
|
|
|
|
|
2017-09-22 21:00:03 +00:00
|
|
|
|
|
|
|
ADD_CUSTOM_TARGET(docs doxygen dox.cfg)
|