summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2020-04-28 11:13:58 +0000
committerKitware Robot <kwrobot@kitware.com>2020-04-28 07:14:08 -0400
commitee1dd905c01c45837d1533677ce31cd3bf8786dc (patch)
treedcf9bd393b9dfeb6fc0a4f13b94ea58437a10a86
parent9db6583531df4814a6162c21744da095116d3bba (diff)
parent69ed51960b8373a7176f30c3ed8035ac84a0986d (diff)
downloadcmake-ee1dd905c01c45837d1533677ce31cd3bf8786dc.tar.gz
Merge topic 'FindBoost-1.73' into release-3.17
69ed51960b FindBoost: Prevent warning with boost 1.73 Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !4662
-rw-r--r--Modules/FindBoost.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/FindBoost.cmake b/Modules/FindBoost.cmake
index e1eff91146..53fc4b7625 100644
--- a/Modules/FindBoost.cmake
+++ b/Modules/FindBoost.cmake
@@ -1175,7 +1175,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()