diff options
author | Brad King <brad.king@kitware.com> | 2021-12-21 14:27:47 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2021-12-21 14:28:01 (GMT) |
commit | a2752fd914fec369c7961b76ab9cc30f1727a017 (patch) | |
tree | a279884837c5739b6fb1a4c9e0287954c2bc5a25 /Modules | |
parent | c74c8b5928866ead9bc7a4ad41119e3e6c9c6859 (diff) | |
parent | d45667d45943e1b768b25921f8e481cfafa487a4 (diff) | |
download | CMake-a2752fd914fec369c7961b76ab9cc30f1727a017.zip CMake-a2752fd914fec369c7961b76ab9cc30f1727a017.tar.gz CMake-a2752fd914fec369c7961b76ab9cc30f1727a017.tar.bz2 |
Merge topic 'FindBoost-1.78' into release-3.22
d45667d459 FindBoost: Do not warn about now-supported version 1.78
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !6819
Diffstat (limited to 'Modules')
-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() |