aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2021-02-05 04:31:58 +0100
committerSven Gothel <[email protected]>2021-02-05 04:31:58 +0100
commitda53250cbf90bf75ab7b022c5bc23d014d77bc9d (patch)
treeea2555bee1d6e2f8146d510557943618840432a2
parent69a3802f48cc7bf7684b96e5cb3b3d1211cda879 (diff)
Doxygen*.in: Add unit test path; Add INCLUDE_PATH (C++)
-rw-r--r--Doxyfile.cpp.in8
-rw-r--r--Doxyfile.java.in6
2 files changed, 10 insertions, 4 deletions
diff --git a/Doxyfile.cpp.in b/Doxyfile.cpp.in
index 4de26b9e..15414220 100644
--- a/Doxyfile.cpp.in
+++ b/Doxyfile.cpp.in
@@ -767,6 +767,7 @@ INPUT = @CMAKE_CURRENT_SOURCE_DIR@/jaulib/include/jau \
@CMAKE_CURRENT_SOURCE_DIR@/java/jni/ \
@CMAKE_CURRENT_SOURCE_DIR@/README.md \
@CMAKE_CURRENT_SOURCE_DIR@/examples/
+ @CMAKE_CURRENT_SOURCE_DIR@/test/
# 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
@@ -835,6 +836,7 @@ EXCLUDE_SYMBOLS =
# command).
EXAMPLE_PATH = @CMAKE_CURRENT_SOURCE_DIR@/examples/ \
+ @CMAKE_CURRENT_SOURCE_DIR@/test/ \
@CMAKE_CURRENT_SOURCE_DIR@/jaulib/test/
# If the value of the EXAMPLE_PATH tag contains directories, you can use the
@@ -1971,7 +1973,9 @@ SEARCH_INCLUDES = YES
# preprocessor.
# This tag requires that the tag SEARCH_INCLUDES is set to YES.
-INCLUDE_PATH =
+INCLUDE_PATH = @CMAKE_CURRENT_SOURCE_DIR@/jaulib/include \
+ @CMAKE_CURRENT_SOURCE_DIR@/jaulib/include/jau \
+ @CMAKE_CURRENT_SOURCE_DIR@/api/
# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard
# patterns (like *.h and *.hpp) to filter out the header-files in the
@@ -1979,7 +1983,7 @@ INCLUDE_PATH =
# used.
# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
-INCLUDE_FILE_PATTERNS =
+INCLUDE_FILE_PATTERNS = *.h *.hpp
# The PREDEFINED tag can be used to specify one or more macro names that are
# defined before the preprocessor is started (similar to the -D option of e.g.
diff --git a/Doxyfile.java.in b/Doxyfile.java.in
index 78ad1e40..cdd2a774 100644
--- a/Doxyfile.java.in
+++ b/Doxyfile.java.in
@@ -760,7 +760,8 @@ WARN_LOGFILE =
INPUT = @CMAKE_CURRENT_SOURCE_DIR@/java/ \
@CMAKE_CURRENT_SOURCE_DIR@/README.md \
- @CMAKE_CURRENT_SOURCE_DIR@/examples/java/
+ @CMAKE_CURRENT_SOURCE_DIR@/examples/java/ \
+ @CMAKE_CURRENT_SOURCE_DIR@/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
@@ -828,7 +829,8 @@ EXCLUDE_SYMBOLS =
# that contain example code fragments that are included (see the \include
# command).
-EXAMPLE_PATH = @CMAKE_CURRENT_SOURCE_DIR@/examples/java/
+EXAMPLE_PATH = @CMAKE_CURRENT_SOURCE_DIR@/examples/java/ \
+ @CMAKE_CURRENT_SOURCE_DIR@/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