From 42df785cb4c39cc65a7f621017a55e30fd9c5cb2 Mon Sep 17 00:00:00 2001 From: Jean-Paul Chaput Date: Thu, 15 Jul 2010 12:33:45 +0000 Subject: [PATCH] Print boost libraries one per line. --- bootstrap/cmake_modules/FindBootstrap.cmake | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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)