From: Alexandru Gagniuc Date: Wed, 28 Nov 2018 20:36:37 +0000 (-0600) Subject: cmake: Don't do a QUIET search for libsigrokcxx X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=commitdiff_plain;h=7bcd627e2945c193d3a8bee7089ec1e2fab89eac cmake: Don't do a QUIET search for libsigrokcxx libsigrokcxx is the most important dependency. A QUIET search means we can miss important information, such as a version mismatch, and the "libsigrokcxx not found" message is not at all helpful in determining the cause of the problem. --- diff --git a/CMakeLists.txt b/CMakeLists.txt index b74792de..b6f25e27 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -87,7 +87,7 @@ if(ANDROID) endif() find_package(PkgConfig) -pkg_check_modules(LIBSRCXX QUIET ${LIBSR_CXX_BINDING}) +pkg_check_modules(LIBSRCXX ${LIBSR_CXX_BINDING}) if(NOT LIBSRCXX_FOUND OR NOT LIBSRCXX_VERSION) message(FATAL_ERROR "libsigrok C++ bindings missing, check libsigrok's 'configure' output (missing dependencies?)") endif()