diff options
author | John Drouhard <john@jmdtech.org> | 2021-06-04 17:22:36 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2021-06-04 17:43:54 (GMT) |
commit | c44dfdfdbb62a8ad505ceff16444f36ce2ad33b0 (patch) | |
tree | 4cee7a846c3dc2008f9a1b6b31a7c8c1e0470713 /Modules/FindBoost.cmake | |
parent | 105b01b8d42d777a6b84f96f44395875f6fe0570 (diff) | |
download | CMake-c44dfdfdbb62a8ad505ceff16444f36ce2ad33b0.zip CMake-c44dfdfdbb62a8ad505ceff16444f36ce2ad33b0.tar.gz CMake-c44dfdfdbb62a8ad505ceff16444f36ce2ad33b0.tar.bz2 |
FindBoost: Add check for json component header in Boost 1.75+
In commit 8293064760 (FindBoost: Add support for Boost 1.75, 2021-02-03,
v3.19.5~9^2) the dependencies of the json component were added, but the
header listing was left out.
Diffstat (limited to 'Modules/FindBoost.cmake')
-rw-r--r-- | Modules/FindBoost.cmake | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Modules/FindBoost.cmake b/Modules/FindBoost.cmake index d31f925..df997e1 100644 --- a/Modules/FindBoost.cmake +++ b/Modules/FindBoost.cmake @@ -1405,6 +1405,7 @@ function(_Boost_COMPONENT_HEADERS component _hdrs) set(_Boost_LOCALE_HEADERS "boost/locale.hpp") set(_Boost_LOG_HEADERS "boost/log/core.hpp") set(_Boost_LOG_SETUP_HEADERS "boost/log/detail/setup_config.hpp") + set(_Boost_JSON_HEADERS "boost/json.hpp") set(_Boost_MATH_HEADERS "boost/math_fwd.hpp") set(_Boost_MATH_C99_HEADERS "boost/math/tr1.hpp") set(_Boost_MATH_C99F_HEADERS "boost/math/tr1.hpp") |