diff options
author | Riccardo Spagni <ric@spagni.net> | 2014-10-06 18:56:59 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2014-10-06 18:56:59 +0200 |
commit | 1afba7311ee82aa3f951ace1dde38f179703b385 (patch) | |
tree | 76f07c77bb72389090d29b2039254702066f3873 /CMakeLists.txt | |
parent | removed required flags from miniupnp and unbound (diff) | |
download | monero-1afba7311ee82aa3f951ace1dde38f179703b385.tar.xz |
quieten CMake when it can't find packages
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 54565464c..633a5e8d2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -201,7 +201,7 @@ if(STATIC) set(Boost_USE_STATIC_LIBS ON) set(Boost_USE_STATIC_RUNTIME ON) endif() -find_package(Boost 1.53 REQUIRED COMPONENTS system filesystem thread date_time chrono regex serialization program_options) +find_package(Boost 1.53 QUIET REQUIRED COMPONENTS system filesystem thread date_time chrono regex serialization program_options) if(NOT Boost_FOUND) MESSAGE(FATAL_ERROR "${BoldRed}Could not find Boost libraries, please make sure you have installed Boost or libboost-all-dev (1.53 or 1.55+) or the equivalent${ColourReset}") |