summaryrefslogtreecommitdiff
path: root/Modules/FindBoost.cmake
diff options
context:
space:
mode:
authorOlivier LIESS <olivier.liess@eurodecision.com>2020-10-04 21:47:07 +0200
committerOlivier LIESS <olivier.liess@eurodecision.com>2020-10-04 22:05:47 +0200
commit1940e24d580630643614ebe299252bee8540750d (patch)
treede1069708f0ffd6dd454654d65307920fd787efc /Modules/FindBoost.cmake
parent3ec0f9d6209117e768e3d5c02e5d3cc0dc001a16 (diff)
downloadcmake-1940e24d580630643614ebe299252bee8540750d.tar.gz
FindBoost: Prevent warning with boost 1.74
Diffstat (limited to 'Modules/FindBoost.cmake')
-rw-r--r--Modules/FindBoost.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/FindBoost.cmake b/Modules/FindBoost.cmake
index ec087ad432..1762439f7d 100644
--- a/Modules/FindBoost.cmake
+++ b/Modules/FindBoost.cmake
@@ -1183,7 +1183,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(Boost_VERSION_STRING VERSION_GREATER_EQUAL 1.74.0)
+ if(Boost_VERSION_STRING VERSION_GREATER_EQUAL 1.75.0)
message(WARNING "New Boost version may have incorrect or missing dependencies and imported targets")
endif()
endif()