From 30930dff7b06be5ffe28fbef535676e73ee923e2 Mon Sep 17 00:00:00 2001 From: Sjors Provoost Date: Wed, 13 Aug 2025 11:30:34 +0200 Subject: [PATCH] build: require CapnProto 0.7.0 or better Note that 1.0.1 is the oldest version currently covered by Bitcoin Core's extensive CI. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d29eb49..284eba2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,7 +12,7 @@ endif() include("cmake/compat_find.cmake") -find_package(CapnProto REQUIRED) +find_package(CapnProto 0.7.0 REQUIRED) find_package(Threads REQUIRED) set(MPGEN_EXECUTABLE "" CACHE FILEPATH "If specified, should be full path to an external mpgen binary to use rather than the one built internally.")