From 6b273a1b49435e7532d6c7f115dc0be6ca25de2c Mon Sep 17 00:00:00 2001 From: Noel Eck Date: Thu, 21 Apr 2016 15:21:04 -0700 Subject: [PATCH] docs: Added exclude to Doxyfile for boschdriver src. The boschdriver.h file contains tags which are picked up by doxygen and cause incorrect results. For example, the \mainpage and \license cause the Bosch header collateral to be placed on the index.html page of the UPM docs. Added an entry to EXCLUDE_PATTERNS which handles this. Signed-off-by: Noel Eck --- doxy/Doxyfile.in | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/doxy/Doxyfile.in b/doxy/Doxyfile.in index 2f104aa6..b2659c26 100644 --- a/doxy/Doxyfile.in +++ b/doxy/Doxyfile.in @@ -859,7 +859,10 @@ 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 = bosch_* +# bme280driver code is provided by bosch. This source contains tags which are +# picked up by doxygen (namely \mainpage) and incorrectly get added to docs. +EXCLUDE_PATTERNS = bosch_* \ + *bme280driver* # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names # (namespaces, classes, functions, etc.) that should be excluded from the