changeset 515:9c18bfff72ef

CMake: add QUIET to find_package for Boost, closes #722
author David Demelier <markand@malikania.fr>
date Thu, 26 Oct 2017 12:50:54 +0200
parents 16b9ebfd3f08
children bb65cec664c5
files cmake/function/IrccdDefineTest.cmake irccdctl/CMakeLists.txt libcommon/CMakeLists.txt libirccd-js/CMakeLists.txt libirccd/CMakeLists.txt tests/dynlib_plugin/CMakeLists.txt
diffstat 6 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- 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)
 
--- 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
--- 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
--- 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
--- 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
--- 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)