Skip to content

Commit 9100655

Browse files
committed
Remove boost system requirement.
1 parent cd7c5bc commit 9100655

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

example/boost/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
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

example/x3/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
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

fuzz/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
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

test/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
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

0 commit comments

Comments
 (0)