Skip to content

Commit 70b8832

Browse files
committed
Merge pull request #119 from torbjoernk/feature/boost-version
cmake: set minimum Boost version 1.53.0
2 parents 2408f24 + 89856aa commit 70b8832

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

3rdparty/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ if(${CMAKE_VERBOSE_MAKEFILE})
1818
set(Boost_DETAILED_FAILURE_MSG ON)
1919
endif()
2020

21-
find_package(Boost COMPONENTS program_options REQUIRED)
21+
find_package(Boost 1.53.0 COMPONENTS program_options REQUIRED)
2222
message(STATUS "Boost include path: ${Boost_INCLUDE_DIRS}")
2323
message(STATUS "Boost library path: ${Boost_LIBRARY_DIRS}")
2424
list(APPEND 3rdparty_INCLUDES ${Boost_INCLUDE_DIRS})

doc/source/installing.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
* A recent C++ compiler that supports (most of) the C++11 standard.
66
* The [CMake](http://cmake.org/) build tool.
7+
* The [Boost](https://boost.org/) libraries at least of version 1.53.0.
8+
Especially `boost::program_options` is required.
79

810

911
## Obtaining the Sources

0 commit comments

Comments
 (0)