CMake: Pretty print PACKAGELIST

Change-Id: Ib87e0d4111f466e660435acf871036c0f1bb1555
Reviewed-on: https://code.wireshark.org/review/23673
Reviewed-by: João Valverde <j@v6e.pt>
This commit is contained in:
João Valverde 2017-09-24 09:31:12 +01:00 committed by João Valverde
parent dcf52a1695
commit cf4abe1376
1 changed files with 2 additions and 1 deletions

View File

@ -1024,7 +1024,8 @@ set(PROGLIST)
# Sort the package list
list(SORT PACKAGELIST)
message(STATUS "Packagelist: ${PACKAGELIST}")
string(REPLACE ";" " " _package_list "${PACKAGELIST}")
message(STATUS "Package List: ${_package_list}")
# Let's loop the package list
foreach(PACKAGE ${PACKAGELIST})
if(${PACKAGE} STREQUAL "Qt4")