We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba2c2a2 commit 68bf7d7Copy full SHA for 68bf7d7
1 file changed
CMakeLists.txt
@@ -120,6 +120,11 @@ if(CMAKE_HOST_SYSTEM_PROCESSOR STREQUAL "x86_64" AND NOT rr_64BIT)
120
endif()
121
122
123
+find_program(CAPNP capnp)
124
+if(${CAPNP} STREQUAL "CAPNP-NOTFOUND")
125
+ message(FATAL_ERROR "Can't find 'capnp' command; install 'capnproto' package?")
126
+endif()
127
+
128
set(REQUIRED_LIBS
129
capnp
130
)
0 commit comments