-
Notifications
You must be signed in to change notification settings - Fork 1
/
Doxyfile
111 lines (91 loc) · 3 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
100
101
102
103
104
105
106
107
108
109
110
111
# Doxyfile 1.9.7
# This file describes the settings to be used by the documentation system
# doxygen (www.doxygen.org) for a project.
#
# All text after a double hash (##) is considered a comment and is placed in
# front of the TAG it is preceding.
#
# All text after a single hash (#) is considered a comment and will be ignored.
# The format is:
# TAG = value [value, ...]
# For lists, items can also be appended using:
# TAG += value [value, ...]
# Values that contain spaces should be placed between quotes (\" \").
#
# Note:
#
# Use doxygen to compare the used configuration file with the template
# configuration file:
# doxygen -x [configFile]
# Use doxygen to compare the used configuration file with the template
# configuration file without replacing the environment variables or CMake type
# replacement variables:
# doxygen -x_noenv [configFile]
DOXYFILE_ENCODING = UTF-8
PROJECT_NAME = "Bartleby"
PROJECT_NUMBER = 0.1.0
PROJECT_BRIEF = "A symbol renaming toolkit"
PROJECT_LOGO =
OUTPUT_DIRECTORY = doxygen-docs
OUTPUT_LANGUAGE = English
BRIEF_MEMBER_DESC = YES
REPEAT_BRIEF = YES
ABBREVIATE_BRIEF = "The $name class" \
"The $name widget" \
"The $name file" \
is \
provides \
specifies \
contains \
represents \
a \
an \
the
INHERIT_DOCS = YES
TAB_SIZE = 4
MARKDOWN_SUPPORT = YES
MARKDOWN_ID_STYLE = GITHUB
AUTOLINK_SUPPORT = YES
QUIET = NO
WARNINGS = YES
WARN_IF_UNDOCUMENTED = YES
WARN_IF_DOC_ERROR = YES
WARN_IF_INCOMPLETE_DOC = YES
WARN_AS_ERROR = NO
INPUT = .
INPUT_ENCODING = UTF-8
LAYOUT_FILE = ./docs/DoxygenLayout.xml
FILE_PATTERNS = *.c \
*.cpp \
*.h \
*.hpp \
*.dox
EXTENSION_MAPPING = bzl=python \
bazel=python
RECURSIVE = YES
EXCLUDE = README.md \
docs/rules.md \
bazel-bartleby \
bazel-bin \
bazel-out \
bazel-testlogs \
build
EXCLUDE_SYMLINKS = YES
EXCLUDE_PATTERNS =
EXAMPLE_PATH = examples/
EXAMPLE_RECURSIVE = YES
HTML_COLORSTYLE = TOGGLE
GENERATE_DOCSET = NO
GENERATE_HTMLHELP = NO
SEARCHENGINE = YES
SERVER_BASED_SEARCH = NO
GENERATE_LATEX = NO
GENERATE_RTF = NO
GENERATE_MAN = NO
GENERATE_XML = NO
GENERATE_DOCBOOK = NO
GENERATE_AUTOGEN_DEF = NO
GENERATE_PERLMOD = NO
ENABLE_PREPROCESSING = YES
PYTHON_DOCSTRING = NO
INLINE_SOURCES = YES