diff options
author | Roger Leigh <rleigh@codelibre.net> | 2018-07-11 22:14:19 (GMT) |
---|---|---|
committer | Roger Leigh <rleigh@codelibre.net> | 2018-07-11 22:14:21 (GMT) |
commit | b76b93c728baa32c0740d36d33318a2aa394d119 (patch) | |
tree | 6336086a7ed1466de51a37c25285d2cd90251fe8 /Modules/FindBoost.cmake | |
parent | c8a7835ea9332e3097caeda0ea297f1332948f33 (diff) | |
download | CMake-b76b93c728baa32c0740d36d33318a2aa394d119.zip CMake-b76b93c728baa32c0740d36d33318a2aa394d119.tar.gz CMake-b76b93c728baa32c0740d36d33318a2aa394d119.tar.bz2 |
FindBoost: Change context header used
boost/context/all.hpp is removed in Boost 1.68.
boost/context/detail/fcontext.hpp is present in all Boost
releases containing context (≥1.61).
Diffstat (limited to 'Modules/FindBoost.cmake')
-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 9a1301f..4e5c45d 100644 --- a/Modules/FindBoost.cmake +++ b/Modules/FindBoost.cmake @@ -881,7 +881,7 @@ function(_Boost_COMPONENT_HEADERS component _hdrs) set(_Boost_CHRONO_HEADERS "boost/chrono.hpp") set(_Boost_CONTAINER_HEADERS "boost/container/container_fwd.hpp") set(_Boost_CONTRACT_HEADERS "boost/contract.hpp") - set(_Boost_CONTEXT_HEADERS "boost/context/all.hpp") + set(_Boost_CONTEXT_HEADERS "boost/context/detail/fcontext.hpp") set(_Boost_COROUTINE_HEADERS "boost/coroutine/all.hpp") set(_Boost_DATE_TIME_HEADERS "boost/date_time/date.hpp") set(_Boost_EXCEPTION_HEADERS "boost/exception/exception.hpp") |