[Parallel_libs-commits] [parallel-libs] r280278 - Exclude examples, unittests from doc gen

Jason Henline via Parallel_libs-commits parallel_libs-commits at lists.llvm.org
Wed Aug 31 12:02:47 PDT 2016


Author: jhen
Date: Wed Aug 31 14:02:47 2016
New Revision: 280278

URL: http://llvm.org/viewvc/llvm-project?rev=280278&view=rev
Log:
Exclude examples, unittests from doc gen

Public documentation shouldn't be generated for unit test code and code
that is only meant to be used as snippets in other documentation.

Modified:
    parallel-libs/trunk/streamexecutor/Doxyfile.in

Modified: parallel-libs/trunk/streamexecutor/Doxyfile.in
URL: http://llvm.org/viewvc/llvm-project/parallel-libs/trunk/streamexecutor/Doxyfile.in?rev=280278&r1=280277&r2=280278&view=diff
==============================================================================
--- parallel-libs/trunk/streamexecutor/Doxyfile.in (original)
+++ parallel-libs/trunk/streamexecutor/Doxyfile.in Wed Aug 31 14:02:47 2016
@@ -794,7 +794,7 @@ 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       = */examples/* */unittests/*
 
 # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
 # (namespaces, classes, functions, etc.) that should be excluded from the




More information about the Parallel_libs-commits mailing list