Doxyfile: Make exclude patterns more specific.

Current exclude patterns lead to unwanted exclusion of all paths
containing common directory names like output, bindings etc. even
if those names occur higher in the directory structure.

Make exclude patterns more specific by prefixing them with src/.

Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
This commit is contained in:
Bartosz Golaszewski 2015-02-18 13:21:18 +01:00 committed by Uwe Hermann
parent 3d14ce49e4
commit b1e034f758
1 changed files with 3 additions and 3 deletions

View File

@ -818,9 +818,9 @@ EXCLUDE_SYMLINKS = NO
# - bindings/*: Language bindings, no public API stuff in there.
# - doxy/*: Potentially already generated docs, should not be scanned.
#
EXCLUDE_PATTERNS = */hardware/* */input/* */output/* */transform/*
EXCLUDE_PATTERNS += */scpi/* */dmm/* */lcr/*
EXCLUDE_PATTERNS += */tests/* */bindings/* */doxy/*
EXCLUDE_PATTERNS = */src/hardware/* */src/input/* */src/output/* */src/transform/*
EXCLUDE_PATTERNS += */src/scpi/* */src/dmm/* */src/lcr/*
EXCLUDE_PATTERNS += */src/tests/* */src/bindings/* */src/doxy/*
INPUT += src/input/input.c src/output/output.c
INPUT += src/transform/transform.c