From caf335cec31783af398377562336bf7374594253 Mon Sep 17 00:00:00 2001 From: Timo Heister Date: Sun, 24 Nov 2019 15:59:47 -0500 Subject: [PATCH] make target documentation report location I am repeatedly struggling to find the correct .html file to open after running "make documentation". Fix this by printing the absolute path to the index.html to the screen. --- doc/doxygen/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/doxygen/CMakeLists.txt b/doc/doxygen/CMakeLists.txt index 915d12892c..96f526349f 100644 --- a/doc/doxygen/CMakeLists.txt +++ b/doc/doxygen/CMakeLists.txt @@ -287,6 +287,7 @@ ADD_CUSTOM_COMMAND( COMMAND ${PERL_EXECUTABLE} ARGS ${CMAKE_CURRENT_SOURCE_DIR}/scripts/set_canonical_doxygen.pl + COMMAND ${CMAKE_COMMAND} -E echo "-- Documentation is available at ${CMAKE_CURRENT_BINARY_DIR}/deal.II/index.html" WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} DEPENDS tutorial -- 2.39.5