From: Kefu Chai Date: Mon, 4 Jun 2018 14:27:55 +0000 (+0800) Subject: cmake: bump up the required boost version to 1.67 X-Git-Tag: v14.0.1~1194^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F22392%2Fhead;p=ceph.git cmake: bump up the required boost version to 1.67 Signed-off-by: Kefu Chai --- diff --git a/CMakeLists.txt b/CMakeLists.txt index c904497866f..d557536c205 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -604,13 +604,13 @@ if(WITH_SYSTEM_BOOST) else() set(Boost_USE_STATIC_LIBS ON) endif() - find_package(Boost 1.66 COMPONENTS ${BOOST_COMPONENTS} REQUIRED) + find_package(Boost 1.67 COMPONENTS ${BOOST_COMPONENTS} REQUIRED) else() set(BOOST_J 1 CACHE STRING "max jobs for Boost build") # override w/-DBOOST_J= set(Boost_USE_STATIC_LIBS ON) include(BuildBoost) - build_boost(1.66 + build_boost(1.67 COMPONENTS ${BOOST_COMPONENTS} ${BOOST_HEADER_COMPONENTS}) include_directories(BEFORE SYSTEM ${Boost_INCLUDE_DIRS}) endif()