From 056068d97600e15b721c938f30f67c1b4e52dddc Mon Sep 17 00:00:00 2001 From: Ammar Nejati <a.nejati@fz-juelich.de> Date: Tue, 19 Oct 2021 14:26:41 +0200 Subject: [PATCH] CMake: Add a message to report the discovered Boost libraries (Minor change) --- cmake/BornAgain/Dependences.cmake | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmake/BornAgain/Dependences.cmake b/cmake/BornAgain/Dependences.cmake index a32b0a8749e..b0560865af8 100644 --- a/cmake/BornAgain/Dependences.cmake +++ b/cmake/BornAgain/Dependences.cmake @@ -70,6 +70,8 @@ endif() message(STATUS "Boost required libraries: ${boost_libraries_required}") find_package(Boost 1.65.1 COMPONENTS ${boost_libraries_required}) message(STATUS "Boost: includes at ${Boost_INCLUDE_DIRS}, libraries at ${Boost_LIBRARY_DIRS}") +message(STATUS "Boost libraries: ${Boost_LIBRARIES}; ${Boost_Additional_Libraries}") + if(NOT Boost_FOUND) message(FATAL_ERROR "Not all required Boost component libraries were found") endif() -- GitLab