Skip to content

Commit f33c7df

Browse files
committed
Removd boost system.
1 parent d372a71 commit f33c7df

File tree

4 files changed

+4
-8
lines changed

4 files changed

+4
-8
lines changed

example/boost/CMakeLists.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FIND_PACKAGE (Boost REQUIRED COMPONENTS system)
1+
FIND_PACKAGE (Boost REQUIRED)
22
FIND_PACKAGE (Threads REQUIRED)
33
FIND_PACKAGE (ZLIB REQUIRED)
44

@@ -22,7 +22,6 @@ FOREACH (source_file ${exec_PROGRAMS})
2222
)
2323
TARGET_LINK_LIBRARIES (${source_file_we} PRIVATE
2424
msgpack-cxx
25-
Boost::system
2625
Threads::Threads
2726
)
2827
IF (ZLIB_FOUND)

example/x3/CMakeLists.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
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)
33
FIND_PACKAGE (Threads REQUIRED)
44

55
LIST (APPEND exec_PROGRAMS
@@ -42,7 +42,6 @@ IF (MSGPACK_USE_X3_PARSE AND MSGPACK_DEFAULT_API_VERSION VERSION_GREATER 1)
4242
TARGET_LINK_LIBRARIES (${source_file_we} PRIVATE
4343
msgpack-cxx
4444
Boost::context
45-
Boost::system
4645
Threads::Threads
4746
)
4847
IF ("${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang" OR "${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")

fuzz/CMakeLists.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
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)
33

44
LIST (APPEND check_PROGRAMS
55
regression_runner.cpp
@@ -19,7 +19,6 @@ FOREACH (source_file ${check_PROGRAMS})
1919
msgpack-cxx
2020
Threads::Threads
2121
Boost::filesystem
22-
Boost::system
2322
Boost::unit_test_framework
2423
)
2524

test/CMakeLists.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FIND_PACKAGE (Threads REQUIRED)
22
FIND_PACKAGE (ZLIB)
3-
FIND_PACKAGE (Boost REQUIRED COMPONENTS unit_test_framework system)
3+
FIND_PACKAGE (Boost REQUIRED COMPONENTS unit_test_framework)
44

55
LIST (APPEND check_PROGRAMS
66
array_ref.cpp
@@ -79,7 +79,6 @@ FOREACH (source_file ${check_PROGRAMS})
7979

8080
TARGET_LINK_LIBRARIES (${source_file_we}
8181
msgpack-cxx
82-
Boost::system
8382
Boost::unit_test_framework
8483
Threads::Threads
8584
ZLIB::ZLIB

0 commit comments

Comments
 (0)