diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2019-12-07 03:36:21 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2019-12-07 03:36:21 +0300 |
commit | 00863566ec4601c65c435b74e575d49546a1c707 (patch) | |
tree | 479a0a6e96aba8191c7a65ea9bee2f4d5e3a4aba /server/common | |
parent | add stress_test.py (diff) | |
download | math-server-00863566ec4601c65c435b74e575d49546a1c707.tar.gz math-server-00863566ec4601c65c435b74e575d49546a1c707.zip |
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.
Diffstat (limited to '')
-rw-r--r-- | server/common/CMakeLists.txt | 6 | ||||
-rw-r--r-- | server/common/error.hpp (renamed from server/error.hpp) | 0 | ||||
-rw-r--r-- | server/common/log.hpp (renamed from server/log.hpp) | 0 |
3 files changed, 6 insertions, 0 deletions
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}) diff --git a/server/error.hpp b/server/common/error.hpp index cbfbb1e..cbfbb1e 100644 --- a/server/error.hpp +++ b/server/common/error.hpp diff --git a/server/log.hpp b/server/common/log.hpp index ca0fafd..ca0fafd 100644 --- a/server/log.hpp +++ b/server/common/log.hpp |