diff options
author | Brad King <brad.king@kitware.com> | 2020-04-28 11:13:58 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2020-04-28 11:14:09 (GMT) |
commit | 4bc4e14899f199dc13fde6e4272c145250ee52e8 (patch) | |
tree | a8f6a660c7d6681365cbba41b1b871ffd41f9a1d | |
parent | 9446123911f16de14196d0b7b5ea68d122cc36af (diff) | |
parent | 69ed51960b8373a7176f30c3ed8035ac84a0986d (diff) | |
download | CMake-4bc4e14899f199dc13fde6e4272c145250ee52e8.zip CMake-4bc4e14899f199dc13fde6e4272c145250ee52e8.tar.gz CMake-4bc4e14899f199dc13fde6e4272c145250ee52e8.tar.bz2 |
Merge topic 'FindBoost-1.73'
69ed51960b FindBoost: Prevent warning with boost 1.73
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !4662
-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 1b27463..57e17b3 100644 --- a/Modules/FindBoost.cmake +++ b/Modules/FindBoost.cmake @@ -1179,7 +1179,7 @@ function(_Boost_COMPONENT_DEPENDENCIES component _ret) set(_Boost_TIMER_DEPENDENCIES chrono) set(_Boost_WAVE_DEPENDENCIES filesystem serialization thread chrono date_time atomic) set(_Boost_WSERIALIZATION_DEPENDENCIES serialization) - if(NOT Boost_VERSION_STRING VERSION_LESS 1.73.0) + if(Boost_VERSION_STRING VERSION_GREATER_EQUAL 1.74.0) message(WARNING "New Boost version may have incorrect or missing dependencies and imported targets") endif() endif() |