blob: 9d530b64d4741670cd0ecd4af8316cd01e817509 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -59,7 +59,11 @@ find_package(Threads REQUIRED)
include(FindBoost)
find_package(Boost REQUIRED
- COMPONENTS filesystem system iostreams program_options regex)
+ COMPONENTS filesystem iostreams program_options regex)
+if(Boost_MAJOR_VERSION EQUAL 1 AND Boost_MINOR_VERSION LESS 69)
+ list(APPEND BOOST_REQUIRED_COMPONENTS system)
+ find_package(Boost REQUIRED COMPONENTS ${BOOST_REQUIRED_COMPONENTS})
+endif()
# HEADER CHECKS
include(CheckIncludeFileCXX)
|