From 00863566ec4601c65c435b74e575d49546a1c707 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Sat, 7 Dec 2019 03:36:21 +0300 Subject: split server into multiple components In a vague attempt to make header files more readable, split server/ into a number of components. Also, refactor the unit tests to use the "Data-driven test cases" of Boost.Test. --- server/common/CMakeLists.txt | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 server/common/CMakeLists.txt (limited to 'server/common/CMakeLists.txt') diff --git a/server/common/CMakeLists.txt b/server/common/CMakeLists.txt new file mode 100644 index 0000000..5655861 --- /dev/null +++ b/server/common/CMakeLists.txt @@ -0,0 +1,6 @@ +find_package(Boost REQUIRED) + +add_library(common INTERFACE) + +target_include_directories(common SYSTEM INTERFACE ${Boost_INCLUDE_DIRS}) +target_link_libraries(common INTERFACE ${Boost_LIBRARIES}) -- cgit v1.2.3