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:02 (GMT) |
commit | 132f45a0991984351ab59d2acfcb5b07082bf6b5 (patch) | |
tree | e019698be3656eee4a7fd6ae27c28703e13e0bf9 /Modules | |
parent | 6afe949658ddd45efab12caf3d80f244d6a346bf (diff) | |
parent | d45667d45943e1b768b25921f8e481cfafa487a4 (diff) | |
download | CMake-132f45a0991984351ab59d2acfcb5b07082bf6b5.zip CMake-132f45a0991984351ab59d2acfcb5b07082bf6b5.tar.gz CMake-132f45a0991984351ab59d2acfcb5b07082bf6b5.tar.bz2 |
Merge topic 'FindBoost-1.78'
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 3326eff..91d4eee 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() |