From 810b464fe06c3571dd245fa39082484d71f3d4ac Mon Sep 17 00:00:00 2001 From: John Freeman Date: Thu, 19 Feb 2026 16:45:05 +0900 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 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Builds/CMake/deps/Boost.cmake b/Builds/CMake/deps/Boost.cmake index 40d3b7667..d19fad9c4 100644 --- a/Builds/CMake/deps/Boost.cmake +++ b/Builds/CMake/deps/Boost.cmake @@ -6,6 +6,8 @@ find_package(Boost 1.86 REQUIRED coroutine date_time filesystem + json + json program_options regex system @@ -29,6 +31,7 @@ target_link_libraries(ripple_boost Boost::coroutine Boost::date_time Boost::filesystem + Boost::json Boost::program_options Boost::regex Boost::system