diff options
author | Antonio Borneo <borneo.antonio@gmail.com> | 2021-01-02 17:39:57 +0100 |
---|---|---|
committer | Antonio Borneo <borneo.antonio@gmail.com> | 2021-01-13 11:33:14 +0000 |
commit | 02bd67db3f85b9764b6c4a3556d070a3345e4103 (patch) | |
tree | 59581a17a9120a79074353a18dde280f5cde79ae /Doxyfile.in | |
parent | fa476daa60b51881938577d102893e6443ea8bf8 (diff) | |
download | riscv-openocd-02bd67db3f85b9764b6c4a3556d070a3345e4103.zip riscv-openocd-02bd67db3f85b9764b6c4a3556d070a3345e4103.tar.gz riscv-openocd-02bd67db3f85b9764b6c4a3556d070a3345e4103.tar.bz2 |
Doxyfile.in: exclude libjaylink from doxygen
When build using libjaylink as git submodule, doxygen includes the
libjaylink files and complains for multiple 'mainpage' comment
block, one in OpenOCD and the other in libjaylink:
src/jtag/drivers/libjaylink/libjaylink/core.c:37: warning:
found more than one \mainpage comment block! (first
occurrence: doc/manual/main.txt, line 1), Skipping current
block!
Exclude libjaylink submodule from doxygen.
Change-Id: I5e856817344c9f21f8c26f077a23c00b83cfbcb5
Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
Reviewed-on: http://openocd.zylin.com/6000
Tested-by: jenkins
Diffstat (limited to 'Doxyfile.in')
-rw-r--r-- | Doxyfile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doxyfile.in b/Doxyfile.in index 55ed7f0..9be53d0 100644 --- a/Doxyfile.in +++ b/Doxyfile.in @@ -600,7 +600,7 @@ RECURSIVE = YES # excluded from the INPUT source files. This way you can easily exclude a # subdirectory from a directory tree whose root is specified with the INPUT tag. -EXCLUDE = +EXCLUDE = @srcdir@/src/jtag/drivers/libjaylink # The EXCLUDE_SYMLINKS tag can be used select whether or not files or # directories that are symbolic links (a Unix filesystem feature) are excluded |