diff options
author | Brad King <brad.king@kitware.com> | 2021-12-20 14:03:05 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2021-12-20 14:03:54 (GMT) |
commit | d45667d45943e1b768b25921f8e481cfafa487a4 (patch) | |
tree | a886d43762980c957725217732e26743c9bcb68e /Modules/FindBoost.cmake | |
parent | 92ecf5c9897e03575ac47be3a4f720b1861d3760 (diff) | |
download | CMake-d45667d45943e1b768b25921f8e481cfafa487a4.zip CMake-d45667d45943e1b768b25921f8e481cfafa487a4.tar.gz CMake-d45667d45943e1b768b25921f8e481cfafa487a4.tar.bz2 |
FindBoost: Do not warn about now-supported version 1.78
In commit d176ff71c0 (FindBoost: Add support for Boost 1.78, 2021-12-15)
we forgot to update the future-version check.
Issue: #23016
Diffstat (limited to 'Modules/FindBoost.cmake')
-rw-r--r-- | Modules/FindBoost.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/FindBoost.cmake b/Modules/FindBoost.cmake index 75cbbf5..c3142d6 100644 --- a/Modules/FindBoost.cmake +++ b/Modules/FindBoost.cmake @@ -1380,7 +1380,7 @@ function(_Boost_COMPONENT_DEPENDENCIES component _ret) set(_Boost_TIMER_DEPENDENCIES chrono) set(_Boost_WAVE_DEPENDENCIES filesystem serialization thread chrono atomic) set(_Boost_WSERIALIZATION_DEPENDENCIES serialization) - if(Boost_VERSION_STRING VERSION_GREATER_EQUAL 1.78.0 AND NOT Boost_NO_WARN_NEW_VERSIONS) + if(Boost_VERSION_STRING VERSION_GREATER_EQUAL 1.79.0 AND NOT Boost_NO_WARN_NEW_VERSIONS) message(WARNING "New Boost version may have incorrect or missing dependencies and imported targets") endif() endif() |