File tree Expand file tree Collapse file tree 4 files changed +4
-8
lines changed Expand file tree Collapse file tree 4 files changed +4
-8
lines changed Original file line number Diff line number Diff line change 1
- FIND_PACKAGE (Boost REQUIRED COMPONENTS system )
1
+ FIND_PACKAGE (Boost REQUIRED)
2
2
FIND_PACKAGE (Threads REQUIRED)
3
3
FIND_PACKAGE (ZLIB REQUIRED)
4
4
@@ -22,7 +22,6 @@ FOREACH (source_file ${exec_PROGRAMS})
22
22
)
23
23
TARGET_LINK_LIBRARIES (${source_file_we} PRIVATE
24
24
msgpack-cxx
25
- Boost::system
26
25
Threads::Threads
27
26
)
28
27
IF (ZLIB_FOUND)
Original file line number Diff line number Diff line change 1
1
IF (MSGPACK_USE_X3_PARSE AND MSGPACK_DEFAULT_API_VERSION VERSION_GREATER 1)
2
- FIND_PACKAGE (Boost REQUIRED COMPONENTS context system )
2
+ FIND_PACKAGE (Boost REQUIRED COMPONENTS context)
3
3
FIND_PACKAGE (Threads REQUIRED)
4
4
5
5
LIST (APPEND exec_PROGRAMS
@@ -42,7 +42,6 @@ IF (MSGPACK_USE_X3_PARSE AND MSGPACK_DEFAULT_API_VERSION VERSION_GREATER 1)
42
42
TARGET_LINK_LIBRARIES (${source_file_we} PRIVATE
43
43
msgpack-cxx
44
44
Boost::context
45
- Boost::system
46
45
Threads::Threads
47
46
)
48
47
IF ("${CMAKE_CXX_COMPILER_ID} " MATCHES "Clang" OR "${CMAKE_CXX_COMPILER_ID} " STREQUAL "GNU" )
Original file line number Diff line number Diff line change 1
1
FIND_PACKAGE (Threads REQUIRED)
2
- FIND_PACKAGE (Boost REQUIRED COMPONENTS system filesystem unit_test_framework)
2
+ FIND_PACKAGE (Boost REQUIRED COMPONENTS filesystem unit_test_framework)
3
3
4
4
LIST (APPEND check_PROGRAMS
5
5
regression_runner.cpp
@@ -19,7 +19,6 @@ FOREACH (source_file ${check_PROGRAMS})
19
19
msgpack-cxx
20
20
Threads::Threads
21
21
Boost::filesystem
22
- Boost::system
23
22
Boost::unit_test_framework
24
23
)
25
24
Original file line number Diff line number Diff line change 1
1
FIND_PACKAGE (Threads REQUIRED)
2
2
FIND_PACKAGE (ZLIB)
3
- FIND_PACKAGE (Boost REQUIRED COMPONENTS unit_test_framework system )
3
+ FIND_PACKAGE (Boost REQUIRED COMPONENTS unit_test_framework)
4
4
5
5
LIST (APPEND check_PROGRAMS
6
6
array_ref.cpp
@@ -79,7 +79,6 @@ FOREACH (source_file ${check_PROGRAMS})
79
79
80
80
TARGET_LINK_LIBRARIES (${source_file_we}
81
81
msgpack-cxx
82
- Boost::system
83
82
Boost::unit_test_framework
84
83
Threads::Threads
85
84
ZLIB::ZLIB
You can’t perform that action at this time.
0 commit comments