Exclude dependencies and tests from documentation (#16821) ##doc
- Additionally remove `CREATE_SUBDIRS` which causes problems with external tools that process Doxygen output
This commit is contained in:
parent
ecb3fc4b13
commit
a23475901a
5
Doxyfile
5
Doxyfile
|
@ -68,7 +68,7 @@ OUTPUT_DIRECTORY = doc/doxygen
|
|||
# performance problems for the file system.
|
||||
# The default value is: NO.
|
||||
|
||||
CREATE_SUBDIRS = YES
|
||||
CREATE_SUBDIRS = NO
|
||||
|
||||
# If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII
|
||||
# characters to appear in the names of generated files. If set to NO, non-ASCII
|
||||
|
@ -890,7 +890,8 @@ EXCLUDE_SYMLINKS = NO
|
|||
# Note that the wildcards are matched against the file with absolute path, so to
|
||||
# exclude all test directories for example use the pattern */test/*
|
||||
|
||||
EXCLUDE_PATTERNS =
|
||||
EXCLUDE_PATTERNS = */test/*
|
||||
EXCLUDE_PATTERNS += */shlr/*
|
||||
|
||||
# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
|
||||
# (namespaces, classes, functions, etc.) that should be excluded from the
|
||||
|
|
Loading…
Reference in New Issue