From c7d0ee4c9c0dcda8ca5bd0325d28f1b41c4ad8f5 Mon Sep 17 00:00:00 2001 From: John Freeman Date: Thu, 21 Sep 2023 11:58:39 -0400 Subject: [PATCH] build: use Boost 1.82 and link Boost.Json (#4632) Add Boost::json to the list of linked Boost libraries. This seems to be required for macOS. --- Builds/CMake/deps/Boost.cmake | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Builds/CMake/deps/Boost.cmake b/Builds/CMake/deps/Boost.cmake index 23ea5e549cc..041c2380e12 100644 --- a/Builds/CMake/deps/Boost.cmake +++ b/Builds/CMake/deps/Boost.cmake @@ -1,4 +1,4 @@ -find_package(Boost 1.70 REQUIRED +find_package(Boost 1.82 REQUIRED COMPONENTS chrono container @@ -6,6 +6,7 @@ find_package(Boost 1.70 REQUIRED coroutine date_time filesystem + json program_options regex system @@ -29,6 +30,7 @@ target_link_libraries(ripple_boost Boost::coroutine Boost::date_time Boost::filesystem + Boost::json Boost::program_options Boost::regex Boost::system