From: Uwe Hermann Date: Fri, 27 Dec 2013 14:50:27 +0000 (+0100) Subject: Doxyfile/Doxyfile_internal: Ignore doxy/* when creating docs. X-Git-Tag: libsigrok-0.3.0~399 X-Git-Url: https://sigrok.org/gitaction?a=commitdiff_plain;h=00f24b9fd89e9edb34cf2cfd270020c8a40817be;p=libsigrok.git Doxyfile/Doxyfile_internal: Ignore doxy/* when creating docs. --- diff --git a/Doxyfile b/Doxyfile index e29021bb..167b192e 100644 --- a/Doxyfile +++ b/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 diff --git a/Doxyfile_internal b/Doxyfile_internal index 4b6db8b9..44ae1781 100644 --- a/Doxyfile_internal +++ b/Doxyfile_internal @@ -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