changeset 149:dece83c24c64

CMake: put find_package(Boost) quiet
author David Demelier <markand@malikania.fr>
date Thu, 26 Oct 2017 20:03:23 +0200
parents e21942f73ef6
children 308c792763ef
files CMakeLists.txt tools/map/CMakeLists.txt tools/tileset/CMakeLists.txt
diffstat 3 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/CMakeLists.txt	Thu Oct 26 12:37:36 2017 +0200
+++ b/CMakeLists.txt	Thu Oct 26 20:03:23 2017 +0200
@@ -49,7 +49,7 @@
 
 include_directories(${CMAKE_BINARY_DIR})
 
-find_package(Boost REQUIRED COMPONENTS filesystem system timer unit_test_framework)
+find_package(Boost REQUIRED QUIET COMPONENTS filesystem system timer unit_test_framework)
 find_package(OpenSSL REQUIRED)
 find_package(ZIP REQUIRED)
 
--- a/tools/map/CMakeLists.txt	Thu Oct 26 12:37:36 2017 +0200
+++ b/tools/map/CMakeLists.txt	Thu Oct 26 20:03:23 2017 +0200
@@ -18,7 +18,7 @@
 
 project(mlk-map)
 
-find_package(Boost REQUIRED COMPONENTS filesystem iostreams system)
+find_package(Boost REQUIRED QUIET COMPONENTS filesystem iostreams system)
 
 malikania_define_executable(
     TARGET mlk-map
--- a/tools/tileset/CMakeLists.txt	Thu Oct 26 12:37:36 2017 +0200
+++ b/tools/tileset/CMakeLists.txt	Thu Oct 26 20:03:23 2017 +0200
@@ -18,7 +18,7 @@
 
 project(mlk-tileset)
 
-find_package(Boost REQUIRED COMPONENTS filesystem system)
+find_package(Boost REQUIRED QUIET COMPONENTS filesystem system)
 
 malikania_define_executable(
     TARGET mlk-tileset