From 51f609fee7934ffcef1c0634c54aa876266e93dd Mon Sep 17 00:00:00 2001 From: MerryMage Date: Sun, 17 Mar 2019 23:04:03 +0000 Subject: CMakeLists: Raise minimum Boost requirement to 1.66.0 Required due to bugfix in boost for changed template resolving rules in GCC 7.3.0 in C++17 mode --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index 9cc24cba6..a4914f37d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -179,9 +179,9 @@ set_property(DIRECTORY APPEND PROPERTY # System imported libraries # ====================== -find_package(Boost 1.64.0 QUIET) +find_package(Boost 1.66.0 QUIET) if (NOT Boost_FOUND) - message(STATUS "Boost 1.64.0 or newer not found, falling back to externals") + message(STATUS "Boost 1.66.0 or newer not found, falling back to externals") set(BOOST_ROOT "${PROJECT_SOURCE_DIR}/externals/boost") set(Boost_NO_SYSTEM_PATHS OFF) -- cgit v1.2.3