diff --git a/CMakeLists.txt b/CMakeLists.txt index 34f32004cf9932b09cc834a6c846c2e897e1e2cb..02d7152dafb92c4c02a2791c8c39c51ab88c510e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -509,11 +509,11 @@ ENDIF(OTB_USE_PQXX) # Boost Library #------------------------------- FIND_PACKAGE(Boost) -IF(Boost_FOUND) +IF(Boost_FOUND AND ( NOT (${Boost_MINOR_VERSION} EQUAL 40))) OPTION(OTB_USE_EXTERNAL_BOOST "Use an outside build of Boost." ON) -ELSE(Boost_FOUND) +ELSE(Boost_FOUND AND ( NOT (${Boost_MINOR_VERSION} EQUAL 40))) OPTION(OTB_USE_EXTERNAL_BOOST "Use an outside build of Boost." OFF) -ENDIF(Boost_FOUND) +ENDIF(Boost_FOUND AND ( NOT (${Boost_MINOR_VERSION} EQUAL 40))) # Option for internal/external BOOST MARK_AS_ADVANCED(OTB_USE_EXTERNAL_BOOST)