# HG changeset patch # User David Demelier # Date 1509015054 -7200 # Node ID 9c18bfff72ef378903dce763cd09b1f6db19d395 # Parent 16b9ebfd3f08da8d50a17c2f08ccd39e6a315aa6 CMake: add QUIET to find_package for Boost, closes #722 diff -r 16b9ebfd3f08 -r 9c18bfff72ef cmake/function/IrccdDefineTest.cmake --- a/cmake/function/IrccdDefineTest.cmake Tue Oct 24 12:52:20 2017 +0200 +++ b/cmake/function/IrccdDefineTest.cmake Thu Oct 26 12:50:54 2017 +0200 @@ -32,7 +32,7 @@ # Resources files are copied VERBATIM into the same directory. # -find_package(Boost REQUIRED COMPONENTS unit_test_framework) +find_package(Boost REQUIRED QUIET COMPONENTS unit_test_framework) include(${CMAKE_CURRENT_LIST_DIR}/IrccdVeraCheck.cmake) diff -r 16b9ebfd3f08 -r 9c18bfff72ef irccdctl/CMakeLists.txt --- a/irccdctl/CMakeLists.txt Tue Oct 24 12:52:20 2017 +0200 +++ b/irccdctl/CMakeLists.txt Thu Oct 26 12:50:54 2017 +0200 @@ -18,7 +18,7 @@ project(irccdctl) -find_package(Boost REQUIRED COMPONENTS timer) +find_package(Boost REQUIRED QUIET COMPONENTS timer) set( SOURCES diff -r 16b9ebfd3f08 -r 9c18bfff72ef libcommon/CMakeLists.txt --- a/libcommon/CMakeLists.txt Tue Oct 24 12:52:20 2017 +0200 +++ b/libcommon/CMakeLists.txt Thu Oct 26 12:50:54 2017 +0200 @@ -18,7 +18,7 @@ project(libcommon) -find_package(Boost 1.60 REQUIRED COMPONENTS filesystem system) +find_package(Boost 1.60 REQUIRED QUIET COMPONENTS filesystem system) set( HEADERS diff -r 16b9ebfd3f08 -r 9c18bfff72ef libirccd-js/CMakeLists.txt --- a/libirccd-js/CMakeLists.txt Tue Oct 24 12:52:20 2017 +0200 +++ b/libirccd-js/CMakeLists.txt Thu Oct 26 12:50:54 2017 +0200 @@ -18,7 +18,7 @@ project(libirccd-js) -find_package(Boost REQUIRED COMPONENTS timer) +find_package(Boost REQUIRED QUIET COMPONENTS timer) set( HEADERS diff -r 16b9ebfd3f08 -r 9c18bfff72ef libirccd/CMakeLists.txt --- a/libirccd/CMakeLists.txt Tue Oct 24 12:52:20 2017 +0200 +++ b/libirccd/CMakeLists.txt Thu Oct 26 12:50:54 2017 +0200 @@ -18,7 +18,7 @@ project(libirccd) -find_package(Boost REQUIRED COMPONENTS timer) +find_package(Boost REQUIRED QUIET COMPONENTS timer) set( HEADERS diff -r 16b9ebfd3f08 -r 9c18bfff72ef tests/dynlib_plugin/CMakeLists.txt --- a/tests/dynlib_plugin/CMakeLists.txt Tue Oct 24 12:52:20 2017 +0200 +++ b/tests/dynlib_plugin/CMakeLists.txt Thu Oct 26 12:50:54 2017 +0200 @@ -16,7 +16,7 @@ # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. # -find_package(Boost REQUIRED) +find_package(Boost REQUIRED QUIET) add_library(test-plugin MODULE test_plugin.cpp) target_link_libraries(test-plugin libirccd Boost::boost)