From 4e74c4364d58efcba001f176a26e8d47ed68214a Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Thu, 31 Oct 2024 21:18:27 -0600 Subject: [PATCH] Also exclude 'doc/entry-name' from showing up in code gallery programs. --- doc/doxygen/code-gallery/CMakeLists.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/doc/doxygen/code-gallery/CMakeLists.txt b/doc/doxygen/code-gallery/CMakeLists.txt index b3d71a5f13..3e08a6a4a8 100644 --- a/doc/doxygen/code-gallery/CMakeLists.txt +++ b/doc/doxygen/code-gallery/CMakeLists.txt @@ -90,9 +90,10 @@ if (EXISTS ${DEAL_II_CODE_GALLERY_DIRECTORY}/README.md) string(REPLACE "${DEAL_II_CODE_GALLERY_DIRECTORY}/${_step}/" "" _relative_src_files "${_src_files}") list(REMOVE_ITEM _relative_src_files doc/author) - list(REMOVE_ITEM _relative_src_files doc/tooltip) - list(REMOVE_ITEM _relative_src_files doc/dependencies) list(REMOVE_ITEM _relative_src_files doc/builds-on) + list(REMOVE_ITEM _relative_src_files doc/dependencies) + list(REMOVE_ITEM _relative_src_files doc/entry-name) + list(REMOVE_ITEM _relative_src_files doc/tooltip) # Also remove files that were created by running 'cmake' in the -- 2.39.5