From abdf3cb6456f3f79b3130d2001bf780deadccf87 Mon Sep 17 00:00:00 2001 From: Ryan Ofsky Date: Thu, 30 Jan 2025 11:07:28 -0500 Subject: [PATCH] cmake: Fix warnings from boost headers This change is technically not needed to add libmultiprocess as a subtree, but it avoids a CI failure in followup PR #30975 which enables multiprocess build option in more CI jobs. In that PR, the "macOS 14 native no depends job" fails due to warnings in boost headers treated as errors, reported in https://github.com/bitcoin/bitcoin/pull/30975#issuecomment-2623801480 and https://github.com/chaincodelabs/libmultiprocess/issues/138 --- src/test/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/src/test/CMakeLists.txt b/src/test/CMakeLists.txt index 6a36abb16f9..48c2eb5c32e 100644 --- a/src/test/CMakeLists.txt +++ b/src/test/CMakeLists.txt @@ -162,6 +162,7 @@ if(ENABLE_IPC) PRIVATE core_interface univalue + Boost::headers ) target_sources(test_bitcoin