diff options
author | NanoAkron <nanoakron@users.noreply.github.com> | 2016-10-27 21:38:29 +0100 |
---|---|---|
committer | NanoAkron <nanoakron@users.noreply.github.com> | 2016-10-27 21:38:29 +0100 |
commit | a269f03e5d59afcb041287b5ea73d6f23b71dd8e (patch) | |
tree | 80f19f19c0b39fa63ac0e3810fd023154e4fc2cc /CMakeLists.txt | |
parent | Merge pull request #1253 (diff) | |
download | monero-a269f03e5d59afcb041287b5ea73d6f23b71dd8e.tar.xz |
Report Boost library version during compilation
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
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}) |