Skip to content

Commit

Permalink
Removd boost system.
Browse files Browse the repository at this point in the history
  • Loading branch information
redboltz committed Nov 23, 2023
1 parent d372a71 commit f33c7df
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 8 deletions.
3 changes: 1 addition & 2 deletions example/boost/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FIND_PACKAGE (Boost REQUIRED COMPONENTS system)
FIND_PACKAGE (Boost REQUIRED)
FIND_PACKAGE (Threads REQUIRED)
FIND_PACKAGE (ZLIB REQUIRED)

Expand All @@ -22,7 +22,6 @@ FOREACH (source_file ${exec_PROGRAMS})
)
TARGET_LINK_LIBRARIES (${source_file_we} PRIVATE
msgpack-cxx
Boost::system
Threads::Threads
)
IF (ZLIB_FOUND)
Expand Down
3 changes: 1 addition & 2 deletions example/x3/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
IF (MSGPACK_USE_X3_PARSE AND MSGPACK_DEFAULT_API_VERSION VERSION_GREATER 1)
FIND_PACKAGE (Boost REQUIRED COMPONENTS context system)
FIND_PACKAGE (Boost REQUIRED COMPONENTS context)
FIND_PACKAGE (Threads REQUIRED)

LIST (APPEND exec_PROGRAMS
Expand Down Expand Up @@ -42,7 +42,6 @@ IF (MSGPACK_USE_X3_PARSE AND MSGPACK_DEFAULT_API_VERSION VERSION_GREATER 1)
TARGET_LINK_LIBRARIES (${source_file_we} PRIVATE
msgpack-cxx
Boost::context
Boost::system
Threads::Threads
)
IF ("${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang" OR "${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
Expand Down
3 changes: 1 addition & 2 deletions fuzz/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FIND_PACKAGE (Threads REQUIRED)
FIND_PACKAGE (Boost REQUIRED COMPONENTS system filesystem unit_test_framework)
FIND_PACKAGE (Boost REQUIRED COMPONENTS filesystem unit_test_framework)

LIST (APPEND check_PROGRAMS
regression_runner.cpp
Expand All @@ -19,7 +19,6 @@ FOREACH (source_file ${check_PROGRAMS})
msgpack-cxx
Threads::Threads
Boost::filesystem
Boost::system
Boost::unit_test_framework
)

Expand Down
3 changes: 1 addition & 2 deletions test/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FIND_PACKAGE (Threads REQUIRED)
FIND_PACKAGE (ZLIB)
FIND_PACKAGE (Boost REQUIRED COMPONENTS unit_test_framework system)
FIND_PACKAGE (Boost REQUIRED COMPONENTS unit_test_framework)

LIST (APPEND check_PROGRAMS
array_ref.cpp
Expand Down Expand Up @@ -79,7 +79,6 @@ FOREACH (source_file ${check_PROGRAMS})

TARGET_LINK_LIBRARIES (${source_file_we}
msgpack-cxx
Boost::system
Boost::unit_test_framework
Threads::Threads
ZLIB::ZLIB
Expand Down

0 comments on commit f33c7df

Please sign in to comment.