From 04b08b5bdef84094d4997fe27b1823df8e5ae232 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Sun, 8 Dec 2019 04:57:32 +0300 Subject: fix CMakeLists.txt for Visual Studio 2019 It does work w/ gcc, but for Visual Studio 2019, it * tries to link client.exe and server.exe with Boost.DateTime and Boost.Regex, * doesn't link with unit_test_framework automatically, which is expected (I dunno why it works with gcc). --- client/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) (limited to 'client') diff --git a/client/CMakeLists.txt b/client/CMakeLists.txt index cd23de8..01a86df 100644 --- a/client/CMakeLists.txt +++ b/client/CMakeLists.txt @@ -3,3 +3,4 @@ find_package(Boost REQUIRED COMPONENTS filesystem program_options) add_executable(client main.cpp) target_include_directories(client SYSTEM PRIVATE ${Boost_INCLUDE_DIRS}) target_link_libraries(client PRIVATE ${Boost_LIBRARIES}) +target_compile_definitions(client PRIVATE BOOST_DATE_TIME_NO_LIB BOOST_REGEX_NO_LIB) -- cgit v1.2.3