We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d314057 commit 657d806Copy full SHA for 657d806
CMakeLists.txt
@@ -13,7 +13,15 @@ endif()
13
include("cmake/compat_find.cmake")
14
15
find_package(Threads REQUIRED)
16
-find_package(CapnProto 0.7 REQUIRED NO_MODULE)
+find_package(CapnProto 0.7 QUIET NO_MODULE)
17
+ if(NOT CapnProto_FOUND)
18
+ message(FATAL_ERROR
19
+ "Cap'n Proto is required but was not found.\n"
20
+ "To resolve, choose one of the following:\n"
21
+ " - Install Cap'n Proto (version 1.0+ recommended)\n"
22
+ " - For Bitcoin Core compilation build with -DENABLE_IPC=OFF to disable multiprocess support\n"
23
+ )
24
+ endif()
25
26
# Cap'n Proto compatibility checks
27
set(CAPNPROTO_ISSUES "")
0 commit comments