From f6fb5419244ac3593bdb550b424913d91e6db8ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mario=20H=C3=BCttel?= Date: Mon, 25 Jan 2021 22:31:00 +0100 Subject: [PATCH] Update doxygen config --- doc/source/Doxyfile.in | 16 +++++++++++----- doc/source/conf.py | 1 + 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/doc/source/Doxyfile.in b/doc/source/Doxyfile.in index bc4c423..510ce67 100644 --- a/doc/source/Doxyfile.in +++ b/doc/source/Doxyfile.in @@ -13,6 +13,10 @@ # TAG += value [value, ...] # Values that contain spaces should be placed between quotes (\" \"). + + + + #--------------------------------------------------------------------------- # Project related configuration options #--------------------------------------------------------------------------- @@ -911,10 +915,7 @@ RECURSIVE = YES # Note that relative paths are relative to the directory from which doxygen is # run. -EXCLUDE = ../../stm-firmware/include/stm32 \ - ../../stm-firmware/include/cmsis \ - ../../stm-firmware/shellmatta/test \ - ../../stm-firmware/shellmatta/example +EXCLUDE = # The EXCLUDE_SYMLINKS tag can be used to select whether or not files or # directories that are symbolic links (a Unix file system feature) are excluded @@ -930,7 +931,12 @@ 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 = */include/stm32/* \ + */include/cmsis/* \ + */shellmatta/test/* \ + */shellmatta/example/* \ + */base64-lib/test/* \ + */updater/ram-code/* # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names # (namespaces, classes, functions, etc.) that should be excluded from the diff --git a/doc/source/conf.py b/doc/source/conf.py index 9943f50..3a2b809 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -32,6 +32,7 @@ try: os.mkdir('../build/_doxygen') except FileExistsError: pass + subprocess.call('doxygen Doxyfile.in', shell=True) # -- General configuration ---------------------------------------------------