Print boost libraries one per line.

This commit is contained in:
Jean-Paul Chaput 2010-07-15 12:33:45 +00:00
parent c6f2e533b8
commit 42df785cb4
1 changed files with 3 additions and 1 deletions

View File

@ -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)