From ce2df7dd21c2977ce1277a2b9ef80d37675eda0e Mon Sep 17 00:00:00 2001 From: Albert GitHub Date: Thu, 6 Feb 2025 12:55:59 -0500 Subject: [PATCH] DOC: Main page was empty The problem is a result of filtering and as the dox files don't contain "C++" code but just comments, there is no need to run them through the "grouping filter". --- Utilities/Doxygen/DoxygenConfig.cmake | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Utilities/Doxygen/DoxygenConfig.cmake b/Utilities/Doxygen/DoxygenConfig.cmake index b8f10746fe3..945ec5bbf7e 100644 --- a/Utilities/Doxygen/DoxygenConfig.cmake +++ b/Utilities/Doxygen/DoxygenConfig.cmake @@ -52,7 +52,9 @@ set(DOXYGEN_EXAMPLE_PATH "${DOXYGEN_TEST_DIRS}") set(DOXYGEN_EXAMPLE_PATTERNS "*.cxx") set(DOXYGEN_EXAMPLE_RECURSIVE "YES") set(DOXYGEN_IMAGE_PATH "${ITK_SOURCE_DIR}/Documentation/Art" "${ITK_BINARY_DIR}/Utilities/Doxygen/Modules") -set(DOXYGEN_INPUT_FILTER "${ITK_DOXYGEN_INPUT_FILTER}") +set(DOXYGEN_FILTER_PATTERNS + "*.h=${ITK_DOXYGEN_INPUT_FILTER}" + "*.cxx=${ITK_DOXYGEN_INPUT_FILTER}") set(DOXYGEN_FILTER_SOURCE_FILES "YES") set(DOXYGEN_SOURCE_BROWSER "YES") set(DOXYGEN_REFERENCED_BY_RELATION "YES")