From 1864e8fd6c845cc61ab62f403a7f574ffde9107f Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Mon, 30 Jul 2018 15:22:08 -0400 Subject: [PATCH] [Doc/CI] Fix Doxygen exclude pattern to not exclude all files on Travis On Travis, the build directory '/home/travis/build/cantera' matched the (no longer needed) exclude pattern of ' /build/*', causing all source files to be skipped. --- doc/doxygen/Doxyfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/doxygen/Doxyfile b/doc/doxygen/Doxyfile index ba2c08130..97c61a371 100644 --- a/doc/doxygen/Doxyfile +++ b/doc/doxygen/Doxyfile @@ -618,7 +618,7 @@ EXCLUDE_SYMLINKS = NO # against the file with absolute path, so to exclude all test directories # for example use the pattern */test/* -EXCLUDE_PATTERNS = */build/* +EXCLUDE_PATTERNS = # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names # (namespaces, classes, functions, etc.) that should be excluded from the