From: Wolfgang Bangerth Date: Wed, 17 Feb 2016 03:28:11 +0000 (-0600) Subject: Print notices about what is being built. X-Git-Tag: v8.5.0-rc1~1305^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=da3c0394abd27326b3512614f3537d268c65a6fb;p=dealii.git Print notices about what is being built. --- diff --git a/doc/doxygen/code-gallery/CMakeLists.txt b/doc/doxygen/code-gallery/CMakeLists.txt index dd3f731761..3008a91a86 100644 --- a/doc/doxygen/code-gallery/CMakeLists.txt +++ b/doc/doxygen/code-gallery/CMakeLists.txt @@ -73,7 +73,9 @@ IF (EXISTS ${DEAL_II_CODE_GALLERY_DIRECTORY}/README.md) ADD_CUSTOM_TARGET(build_code-gallery_h DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/code-gallery.h - ${_code_gallery_h_deps}) + ${_code_gallery_h_deps} + COMMENT + "Building code-gallery.h") ADD_DEPENDENCIES(code-gallery build_code-gallery_h) @@ -127,6 +129,8 @@ IF (EXISTS ${DEAL_II_CODE_GALLERY_DIRECTORY}/README.md) ADD_CUSTOM_TARGET(code-gallery_${_step} DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${_step}.h + COMMENT + "Building doxygen input file for code gallery program <${_step}>" ) ADD_DEPENDENCIES(code-gallery code-gallery_${_step}) @@ -150,7 +154,9 @@ ELSE() # Make the custom command for code-gallery.h visible to the parent CMakeLists.txt by attaching to the code-gallery # custom target: ADD_CUSTOM_TARGET(build_code-gallery_h - DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/code-gallery.h) + DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/code-gallery.h + COMMENT + "Building code-gallery.h") ADD_DEPENDENCIES(code-gallery build_code-gallery_h) ENDIF() diff --git a/doc/doxygen/tutorial/CMakeLists.txt b/doc/doxygen/tutorial/CMakeLists.txt index e482f76b5f..b8b1755e61 100644 --- a/doc/doxygen/tutorial/CMakeLists.txt +++ b/doc/doxygen/tutorial/CMakeLists.txt @@ -78,7 +78,9 @@ ADD_CUSTOM_COMMAND( ${_code_gallery_names} ) ADD_CUSTOM_TARGET(build_tutorial_h - DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/tutorial.h) + DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/tutorial.h + COMMENT + "Building tutorial.h") ADD_DEPENDENCIES(tutorial build_tutorial_h) @@ -126,6 +128,8 @@ FOREACH(_step ${_deal_ii_steps}) DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${_step}.h ${CMAKE_CURRENT_BINARY_DIR}/${_step}.cc + COMMENT + "Building doxygen input file for tutorial program <${_step}>" ) ADD_DEPENDENCIES(tutorial tutorial_${_step}) ENDFOREACH()