Skip to content

Commit 24948f7

Browse files
committed
COMP: Define \doxygen alias and raise Doxygen DOT node limit
The doxygen_add_docs configuration omitted the \doxygen{} alias used throughout the headers, so each use was reported as an unknown command; define it as \ref. Raise DOT_GRAPH_MAX_NODES from 250 to 300 so the itk::Object and itk::ImageToImageFilter inheritance graphs render instead of warning.
1 parent c4c5129 commit 24948f7

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Utilities/Doxygen/DoxygenConfig.cmake

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ set(DOXYGEN_NUM_PROC_THREADS "0")
1616
set(
1717
DOXYGEN_ALIASES
1818
"starteraliasnotused=@par not used"
19+
"doxygen{1}=\\ref \\1"
1920
"sphinx=\\par ITK Sphinx Examples: ^^ \\li <a href=\\\"https://itk.org/ITKExamples\\\">All ITK Sphinx Examples</a> ^^"
2021
"sphinxexample{2}=\\li <a href=\\\"https://itk.org/ITKExamples/src/\\1/Documentation.html\\\">\\2</a> ^^"
2122
"endsphinx=^^ ^^ ^^"
@@ -209,7 +210,7 @@ set(
209210
)
210211
set(DOXYGEN_GRAPHICAL_HIERARCHY "NO")
211212
set(DOXYGEN_DOT_IMAGE_FORMAT "svg")
212-
set(DOXYGEN_DOT_GRAPH_MAX_NODES "250")
213+
set(DOXYGEN_DOT_GRAPH_MAX_NODES "300")
213214
set(DOXYGEN_INTERACTIVE_SVG "YES")
214215
set(DOXYGEN_DOT_MULTI_TARGETS "YES")
215216
set(

0 commit comments

Comments
 (0)