-
Notifications
You must be signed in to change notification settings - Fork 0
/
Doxyfile
99 lines (81 loc) · 3.73 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# Doxyfile for SynthApollon project
# The PROJECT_NAME tag is a single word (or a sequence of words surrounded
# by quotes) that should identify the project.
PROJECT_NAME = "SynthApollon"
# The PROJECT_NUMBER tag can be used to enter a project or revision number.
PROJECT_NUMBER = "1.0"
# The OUTPUT_DIRECTORY tag is used to specify the location where the generated
# documentation will be put. The default directory is the directory where
# doxygen is started in.
OUTPUT_DIRECTORY = docs
# The SOURCE_BROWSER tag enables/disables source code browsing through the
# generated documentation. It also adds extra pages to the generated
# documentation which can help search engines to accurately index the API.
SOURCE_BROWSER = YES
# The INPUT tag can be used to specify the files and directories that contain
# documented source files.
INPUT = SynthApollon/
# The RECURSIVE tag can be used to specify whether or not subdirectories should
# be searched recursively for input files.
RECURSIVE = YES
# The FILE_PATTERNS tag can be used to specify one or more wildcard patterns
# (like *.cpp and *.h) to filter out the source-files in the directories. In
# addition to already parsed files, doxygen will also consider these files,
# but warning messages will be issued for each file that doxygen has problems
# parsing. This tag requires that the tag ENABLED_SECTIONS is set to YES.
FILE_PATTERNS = *.cpp *.h
# The EXAMPLE_PATH tag can be used to specify one or more directories that
# contain example code fragments that are included (see the \include command).
EXAMPLE_PATH = Samples
# The IMAGE_PATH tag can be used to specify one or more directories that contain
# images that are included in the documentation (see the \image command).
IMAGE_PATH = img
# The QUIET tag can be used to turn on/off the messages that are generated
# by doxygen during processing.
QUIET = YES
# The WARNINGS tag can be used to turn on/off the warning messages that are
# generated by doxygen.
WARNINGS = YES
# The WARN_IF_UNDOCUMENTED tag can be used to enable/disable the warning that
# is generated for undocumented members. If set to YES, then doxygen will
# generate warnings for undocumented members.
WARN_IF_UNDOCUMENTED = YES
# The WARN_IF_DOC_ERROR tag can be used to enable/disable the warning that
# is generated if an error occurs while parsing the documentation.
WARN_IF_DOC_ERROR = YES
# The GENERATE_HTML tag is used to specify whether or not HTML documentation
# should be generated.
GENERATE_HTML = YES
# The HTML_OUTPUT tag is used to specify where the HTML docs will be put.
HTML_OUTPUT = html
# The HTML_FILE_EXTENSION tag can be used to specify the file extension for
# the HTML files (for example, .htm or .html).
HTML_FILE_EXTENSION = .html
#---------------------------------------------------------------------------
# Build related configuration options
#---------------------------------------------------------------------------
EXTRACT_ALL = YES
EXTRACT_PRIVATE = YES
EXTRACT_STATIC = YES
EXTRACT_LOCAL_CLASSES = YES
EXTRACT_LOCAL_METHODS = YES
EXTRACT_ANON_NSPACES = YES
HIDE_UNDOC_MEMBERS = NO
HIDE_UNDOC_CLASSES = NO
HIDE_FRIEND_COMPOUNDS = NO
HIDE_IN_BODY_DOCS = NO
INTERNAL_DOCS = YES
CASE_SENSE_NAMES = YES
HIDE_SCOPE_NAMES = NO
SHOW_INCLUDE_FILES = YES
INLINE_INFO = YES
SORT_MEMBER_DOCS = YES
SORT_BRIEF_DOCS = NO
SORT_MEMBERS_CTORS_1ST = NO
SORT_GROUP_NAMES = NO
SORT_BY_SCOPE_NAME = NO
STRICT_PROTO_MATCHING = NO
GENERATE_TODOLIST = YES
GENERATE_TESTLIST = YES
GENERATE_BUGLIST = YES
GENERATE_DEPRECATEDLIST= YES