Skip to content
Snippets Groups Projects
Commit 056068d9 authored by Ammar Nejati's avatar Ammar Nejati
Browse files

CMake: Add a message to report the discovered Boost libraries (Minor change)

parent 41d0b560
No related branches found
No related tags found
1 merge request!408CMake: Remove unnecessary dependencies on C++ Boost libraries
Pipeline #47325 passed
......@@ -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()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment