diff --git a/bootstrap/cmake_modules/FindBootstrap.cmake b/bootstrap/cmake_modules/FindBootstrap.cmake index 62b03037..10613626 100644 --- a/bootstrap/cmake_modules/FindBootstrap.cmake +++ b/bootstrap/cmake_modules/FindBootstrap.cmake @@ -124,7 +124,9 @@ endif(NOT Boost_FOUND) endif(ARGC LESS 1) message(STATUS "Found Boost libraries ${Boost_LIB_VERSION} in ${Boost_INCLUDE_DIR}") - message(STATUS " ${Boost_LIBRARIES}") + foreach(LIBRARY IN LISTS Boost_LIBRARIES) + message(STATUS " ${LIBRARY}") + endforeach(LIBRARY) endmacro(setup_boost)