From d96f51ab7cd33640b578c4c860f5575a1b2d2f03 Mon Sep 17 00:00:00 2001 From: Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> Date: Sun, 24 Mar 2024 10:59:47 +0000 Subject: [PATCH] fixup! cmake: Add fuzzing options Disable WITH_EXTERNAL_SIGNER when FUZZ=ON. The behavior is aligned with the master branch. --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index c272bb8035b53c..5369b817b641e7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -126,6 +126,7 @@ if(FUZZ) set(BUILD_SHARED_LIBS OFF) set(BUILD_WALLET_TOOL OFF) set(WITH_GUI OFF) + set(WITH_EXTERNAL_SIGNER OFF) set(WITH_NATPMP OFF) set(WITH_MINIUPNPC OFF) set(WITH_ZMQ OFF)