-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDoxyfile
83 lines (83 loc) · 2.75 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
DOXYFILE_ENCODING = UTF-8
PROJECT_NAME = "Mutila: Mouse's Utilities for Arduino"
PROJECT_BRIEF = "Oft-used utilities: debouncing buttons, averaging samples, and so on."
# Note: Max 200x55 pixels
PROJECT_LOGO =
INPUT =
FILE_PATTERNS = *.c \
*.cpp \
*.h \
*.hpp \
*.ino \
*.pde \
*.md
USE_MDFILE_AS_MAINPAGE = ./README.md
#EXAMPLE_PATH = examples
#EXAMPLE_PATTERNS = *.ino
#EXAMPLE_RECURSIVE = YES
OUTPUT_DIRECTORY = doc
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
ALWAYS_DETAILED_SEC = NO
INLINE_INHERITED_MEMB = NO
FULL_PATH_NAMES = YES
JAVADOC_AUTOBRIEF = NO
TAB_SIZE = 4
MARKDOWN_SUPPORT = YES
IDL_PROPERTY_SUPPORT = NO
INLINE_SIMPLE_STRUCTS = YES
TYPEDEF_HIDES_STRUCT = NO
EXTRACT_STATIC = YES
CASE_SENSE_NAMES = YES
# This list is created by putting \todo commands in the documentation.
GENERATE_TODOLIST = YES
# This list is created by putting \test commands in the documentation.
GENERATE_TESTLIST = YES
# This list is created by putting \bug commands in the documentation.
GENERATE_BUGLIST = YES
# This list is created by putting \deprecated commands in the documentation.
GENERATE_DEPRECATEDLIST= YES
QUIET = YES
WARNINGS = YES
WARN_IF_UNDOCUMENTED = YES
WARN_IF_DOC_ERROR = YES
RECURSIVE = YES
EXCLUDE = doc examples
EXCLUDE_SYMLINKS = NO
SOURCE_BROWSER = YES
SOURCE_TOOLTIPS = YES
GENERATE_LATEX = NO
GENERATE_HTML = YES
HTML_OUTPUT = html
HTML_FILE_EXTENSION = .html
SEARCHENGINE = YES
SERVER_BASED_SEARCH = NO
PERL_PATH = /usr/bin/perl
CLASS_DIAGRAMS = YES
HAVE_DOT = YES
DOT_FONTNAME = Helvetica
DOT_FONTSIZE = 10
CLASS_GRAPH = YES
COLLABORATION_GRAPH = NO
GROUP_GRAPHS = YES
UML_LOOK = YES
CALL_GRAPH = YES
CALLER_GRAPH = YES
GRAPHICAL_HIERARCHY = YES
DIRECTORY_GRAPH = YES
DOT_IMAGE_FORMAT = png
DOT_TRANSPARENT = NO
DOT_MULTI_TARGETS = NO
GENERATE_LEGEND = YES
DOT_CLEANUP = YES