From 6d641ea883816db1dde2c9f50d3d9ee131bee5f5 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Tue, 23 Apr 2019 07:00:43 +0300 Subject: [PATCH] Improve verbose output --- boost-install.jam | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/boost-install.jam b/boost-install.jam index 9d50ed6..2877ccf 100644 --- a/boost-install.jam +++ b/boost-install.jam @@ -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()"