Doxyfile/Doxyfile_internal: Ignore doxy/* when creating docs.
This commit is contained in:
parent
170fbcb3f7
commit
00f24b9fd8
2
Doxyfile
2
Doxyfile
|
@ -795,9 +795,11 @@ EXCLUDE_SYMLINKS = NO
|
|||
# - output/*: Only output.c contains public API, everything else doesn't.
|
||||
# - tests/*: Unit tests, no public API stuff in there.
|
||||
# - bindings/*: Language bindings, no public API stuff in there.
|
||||
# - doxy/*: Potentially already generated docs, should not be scanned.
|
||||
#
|
||||
EXCLUDE_PATTERNS = */hardware/* */input/* */output/* */tests/*
|
||||
EXCLUDE_PATTERNS += */bindings/*
|
||||
EXCLUDE_PATTERNS += */doxy/*
|
||||
INPUT += input/input.c output/output.c
|
||||
|
||||
# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
|
||||
|
|
|
@ -784,7 +784,9 @@ 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 =
|
||||
# Ignore the following files and directories (see also EXCLUDE above):
|
||||
# - doxy/*: Potentially already generated docs, should not be scanned.
|
||||
EXCLUDE_PATTERNS = */doxy/*
|
||||
|
||||
# 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