From 943b0ca7cdfd6f52dbf7f60a3193e24d106c16c4 Mon Sep 17 00:00:00 2001 From: Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> Date: Fri, 16 Aug 2024 16:24:33 +0100 Subject: [PATCH] fixup! cmake: Add `Maintenance` module Maintain build-time dependencies for the `check-symbols` and `check-security` targets. --- cmake/module/Maintenance.cmake | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/cmake/module/Maintenance.cmake b/cmake/module/Maintenance.cmake index 16af921a7a4d7..2c6cfc1863c28 100644 --- a/cmake/module/Maintenance.cmake +++ b/cmake/module/Maintenance.cmake @@ -44,9 +44,7 @@ function(add_maintenance_targets) foreach(target IN ITEMS bitcoind bitcoin-qt bitcoin-cli bitcoin-tx bitcoin-util bitcoin-wallet test_bitcoin bench_bitcoin) if(TARGET ${target}) - # Not using the TARGET_FILE generator expression because it creates excessive - # target-level dependencies in the following custom targets. - list(APPEND executables $/$) + list(APPEND executables $) endif() endforeach()