summaryrefslogtreecommitdiffstats
path: root/Doxyfile.java.in
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2022-02-07 11:57:09 +0100
committerSven Gothel <[email protected]>2022-02-07 11:57:09 +0100
commitecaa2cf69208586da5305cd0289820a88859eb6b (patch)
treef0339d89b42b0dd90181f42809f33014129c0a5f /Doxyfile.java.in
parent699e6142d8225fbddfeca30fe2213725c2a14326 (diff)
Doxygen: Add 'trial' source path, disable CALL_GRAPH (CALLER_GRAPH is enough), add \example TestDBTClientServer*.java
Diffstat (limited to 'Doxyfile.java.in')
-rw-r--r--Doxyfile.java.in10
1 files changed, 7 insertions, 3 deletions
diff --git a/Doxyfile.java.in b/Doxyfile.java.in
index 6d250a86..b2c5b478 100644
--- a/Doxyfile.java.in
+++ b/Doxyfile.java.in
@@ -761,7 +761,9 @@ WARN_LOGFILE =
INPUT = @CMAKE_CURRENT_SOURCE_DIR@/java/ \
@CMAKE_CURRENT_SOURCE_DIR@/README.md \
@CMAKE_CURRENT_SOURCE_DIR@/examples/java/ \
- @CMAKE_CURRENT_SOURCE_DIR@/test/java/
+ @CMAKE_CURRENT_SOURCE_DIR@/trial/java/ \
+ @CMAKE_CURRENT_SOURCE_DIR@/test/java/ \
+ @CMAKE_CURRENT_SOURCE_DIR@/jaulib/test/java/
# This tag can be used to specify the character encoding of the source files
# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses
@@ -830,7 +832,9 @@ EXCLUDE_SYMBOLS =
# command).
EXAMPLE_PATH = @CMAKE_CURRENT_SOURCE_DIR@/examples/java/ \
- @CMAKE_CURRENT_SOURCE_DIR@/test/java/
+ @CMAKE_CURRENT_SOURCE_DIR@/trial/java/ \
+ @CMAKE_CURRENT_SOURCE_DIR@/test/java/ \
+ @CMAKE_CURRENT_SOURCE_DIR@/jaulib/test/java/
# If the value of the EXAMPLE_PATH tag contains directories, you can use the
# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and
@@ -2216,7 +2220,7 @@ INCLUDED_BY_GRAPH = YES
# The default value is: NO.
# This tag requires that the tag HAVE_DOT is set to YES.
-CALL_GRAPH = YES
+CALL_GRAPH = NO
# If the CALLER_GRAPH tag is set to YES then doxygen will generate a caller
# dependency graph for every global function or class method.