From 9a20dc4f2ebbb4179dfabd6426aa442069649907 Mon Sep 17 00:00:00 2001 From: Sjors Provoost Date: Wed, 29 Jan 2025 18:23:38 +0100 Subject: [PATCH] build: add bitcoin-{node,gui} to Maintenance.cmake They are added to installable_targets and can optionally be included in a MULTIPROCESS=1 custom Guix build. This commit ensures we run the binary security, symbol and dynamic library checks on them (when present). --- cmake/module/Maintenance.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/module/Maintenance.cmake b/cmake/module/Maintenance.cmake index 61251d24397b3..0d127e0c65c14 100644 --- a/cmake/module/Maintenance.cmake +++ b/cmake/module/Maintenance.cmake @@ -42,7 +42,7 @@ function(add_maintenance_targets) VERBATIM ) - foreach(target IN ITEMS bitcoind bitcoin-qt bitcoin-cli bitcoin-tx bitcoin-util bitcoin-wallet test_bitcoin bench_bitcoin) + foreach(target IN ITEMS bitcoind bitcoin-node bitcoin-qt bitcoin-gui bitcoin-cli bitcoin-tx bitcoin-util bitcoin-wallet test_bitcoin bench_bitcoin) if(TARGET ${target}) list(APPEND executables $) endif()