File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ include (CTest)
88enable_testing ()
99
1010add_definitions (-DBOOST_ERROR_CODE_HEADER_ONLY)
11+ add_definitions (-DBOOST_COROUTINES_NO_DEPRECATION_WARNING)
1112#add_definitions(-DBREDIS_DEBUG)
1213
1314find_package (
Original file line number Diff line number Diff line change 1+ find_package (Threads REQUIRED)
2+
13add_executable (stream-parse stream-parse.cpp)
2- target_link_libraries (stream-parse ${Boost_LIBRARIES} )
4+ target_link_libraries (stream-parse ${Boost_LIBRARIES} Threads::Threads )
35
46add_executable (synch-subscription synch-subscription.cpp)
5- target_link_libraries (synch-subscription ${Boost_LIBRARIES} )
7+ target_link_libraries (synch-subscription ${Boost_LIBRARIES} Threads::Threads )
68
79add_executable (speed_test_async_multi speed_test_async_multi.cpp)
8- target_link_libraries (speed_test_async_multi ${Boost_LIBRARIES} )
10+ target_link_libraries (speed_test_async_multi ${Boost_LIBRARIES} Threads::Threads )
You can’t perform that action at this time.
0 commit comments