From bf3accd85df4d8d6055cabf874b17ce124e8ae31 Mon Sep 17 00:00:00 2001 From: John Ralls Date: Thu, 21 May 2026 16:23:28 -0700 Subject: [PATCH] Add some Boost library requirements needed by libgnucash-guile. So that if they're missing we don't have to wait for linker failures to find out. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e9811d4de9..a6f5dd227c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -605,7 +605,7 @@ if (Boost_FOUND) if (Boost_VERSION VERSION_LESS "1.89.0") find_package(Boost 1.67.0 COMPONENTS date_time filesystem locale program_options regex system) else() - find_package(Boost 1.67.0 COMPONENTS date_time filesystem locale program_options regex) + find_package(Boost 1.67.0 COMPONENTS atomic charconv chrono container date_time filesystem locale program_options regex thread) endif() endif()