Improve verbose output

This commit is contained in:
Peter Dimov
2019-04-23 07:00:43 +03:00
parent 90e5ac3c1e
commit 6d641ea883

View File

@@ -289,7 +289,7 @@ rule generate-cmake-variant- ( target : sources * : properties * )
print.text
"if(Boost_VERBOSE OR Boost_DEBUG)"
" message(STATUS \" $(fname)\")"
" message(STATUS \" [x] $(fname)\")"
"endif()"
""
: true ;
@@ -564,8 +564,8 @@ rule generate-cmake-config- ( target : sources * : properties * )
"file(GLOB __boost_variants \"${CMAKE_CURRENT_LIST_DIR}/lib$(name)-variant*.cmake\")"
""
"macro(_BOOST_SKIPPED fname reason)"
" if(Boost_DEBUG)"
" message(STATUS \" ... skipped ${fname} (${reason})\")"
" if(Boost_VERBOSE OR Boost_DEBUG)"
" message(STATUS \" [ ] ${fname}\")"
" endif()"
" list(APPEND __boost_skipped \"${fname} (${reason})\")"
"endmacro()"