Remove QUIET from find_package for Backtrace and Iconv

This commit is contained in:
Jonas Kvinge 2021-07-30 23:00:34 +02:00
parent 871e40c5c0
commit 8040813da8
1 changed files with 2 additions and 2 deletions

View File

@ -86,11 +86,11 @@ endif ()
find_package(PkgConfig REQUIRED)
find_package(Boost REQUIRED)
find_package(Threads)
find_package(Backtrace QUIET)
find_package(Backtrace)
if(Backtrace_FOUND)
set(HAVE_BACKTRACE ON)
endif()
find_package(Iconv QUIET)
find_package(Iconv)
find_package(GnuTLS REQUIRED)
find_package(Protobuf REQUIRED)
if (NOT Protobuf_PROTOC_EXECUTABLE)