diff options
author | Brad King <brad.king@kitware.com> | 2019-08-30 18:47:58 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-08-30 18:51:03 (GMT) |
commit | d7df3cd73f00aefd1878d2842ee8b56541ae3c44 (patch) | |
tree | a6487a9b7dbc81b2e214b8875baa12f14affca68 /Modules | |
parent | 8ff43de1a509b779fe6635086e16f6808a4dc765 (diff) | |
download | CMake-d7df3cd73f00aefd1878d2842ee8b56541ae3c44.zip CMake-d7df3cd73f00aefd1878d2842ee8b56541ae3c44.tar.gz CMake-d7df3cd73f00aefd1878d2842ee8b56541ae3c44.tar.bz2 |
FindBoost: Remove incorrect 1.70 timer dependency
Running `Utilities/Scripts/BoostScanDeps.cmake` with the Boost 1.70.0
sources shows that the `timer` component no longer depends on `system`.
This is consistent with upstream Boost Timer commit `43eecbd071`.
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 6bb5a1f..d260ff2 100644 --- a/Modules/FindBoost.cmake +++ b/Modules/FindBoost.cmake @@ -1116,7 +1116,7 @@ function(_Boost_COMPONENT_DEPENDENCIES component _ret) set(_Boost_MPI_PYTHON_DEPENDENCIES python${component_python_version} mpi serialization) set(_Boost_NUMPY_DEPENDENCIES python${component_python_version}) set(_Boost_THREAD_DEPENDENCIES chrono date_time atomic) - set(_Boost_TIMER_DEPENDENCIES chrono system) + 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.71.0) |