-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDoxyfile
61 lines (36 loc) · 1.56 KB
/
Doxyfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
DOXYFILE_ENCODING = UTF-8
PROJECT_NAME = "ImagInLexis"
OUTPUT_DIRECTORY = doc
OPTIMIZE_OUTPUT_JAVA = YES
INPUT += ./src/main/java/com/xenakis
INPUT += ./src/main/java/application
INPUT += ./README.md
FILE_PATTERNS = *.java
RECURSIVE = YES
EXCLUDE =
GENERATE_LATEX = NO
SHOW_DIRECTORIES = YES
SHOW_FILES = YES
SHOW_NAMESPACES = YES
EXTRACT_ALL = YES
EXTRACT_PRIVATE = YES
HAVE_DOT = YES
COLLABORATION_GRAPH = YES
GROUP_GRAPHS = YES
INCLUDE_GRAPH = YES
INCLUDED_BY_GRAPH = YES
CALL_GRAPH = YES
# If the CALLER_GRAPH and HAVE_DOT tags are set to YES then
# doxygen will generate a caller dependency graph for every global function
# or class method. Note that enabling this option will significantly increase
# the time of a run. So in most cases it will be better to enable caller
# graphs for selected functions only using the \callergraph command.
CALLER_GRAPH = YES
# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen
# will generate a graphical hierarchy of all classes instead of a textual one.
GRAPHICAL_HIERARCHY = YES
# If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES
# then doxygen will show the dependencies a directory has on other directories
# in a graphical way. The dependency relations are determined by the #include
# relations between the files in the directories.
DIRECTORY_GRAPH = YES