aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2016-10-29 11:32:26 +0200
committerRiccardo Spagni <ric@spagni.net>2016-10-29 11:32:26 +0200
commit3e43732455f4a605058a63ea12cdeeda67a4152c (patch)
treeda986689125924b3c2fb5b8b279a37be203b0a04
parentMerge pull request #1262 (diff)
parentReport Boost library version during compilation (diff)
downloadmonero-3e43732455f4a605058a63ea12cdeeda67a4152c.tar.xz
Merge pull request #1264
a269f03 Report Boost library version during compilation (NanoAkron)
-rw-r--r--CMakeLists.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 0d82324a3..2d4f4f24b 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -572,6 +572,8 @@ find_package(Boost 1.58 QUIET REQUIRED COMPONENTS system filesystem thread date_
set(CMAKE_FIND_LIBRARY_SUFFIXES ${OLD_LIB_SUFFIXES})
if(NOT Boost_FOUND)
die("Could not find Boost libraries, please make sure you have installed Boost or libboost-all-dev (1.58) or the equivalent")
+elseif(Boost_FOUND)
+ message(STATUS "Found Boost Version: ${Boost_VERSION}")
endif()
include_directories(SYSTEM ${Boost_INCLUDE_DIRS})