From 0093f97d532dfaf428cf44e62efe9c6b7fb79a75 Mon Sep 17 00:00:00 2001 From: Sjors Provoost Date: Fri, 17 Jan 2025 19:12:08 +0100 Subject: [PATCH] build: add bitcoin-{node,gui} to Maintenance.cmake They are added to installable_targets and became part of the Guix build once depends built them by default. This commit ensures we run the binary security, symbol and dynamic library checks on them. --- 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 61251d24397b31..0d127e0c65c14a 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()