-
Notifications
You must be signed in to change notification settings - Fork 1
/
Doxyfile
65 lines (54 loc) · 2.17 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
# Doxyfile 1.8.6
DOXYFILE_ENCODING = UTF-8
PROJECT_NAME = PicoTest
PROJECT_NUMBER =
PROJECT_BRIEF = "A minimalist unit testing framework for C programs"
PROJECT_LOGO =
GENERATE_HTML = YES
GENERATE_XML = YES
GENERATE_LATEX = NO
OUTPUT_DIRECTORY = docs
WARN_IF_DOC_ERROR = NO
INPUT = README.md \
./include/picotest.h \
./examples
EXTENSION_MAPPING = inc=C
USE_MDFILE_AS_MAINPAGE = README.md
INPUT_ENCODING = UTF-8
EXAMPLE_PATH = ./examples
HIDE_UNDOC_MEMBERS = YES
SUBGROUPING = NO
SORT_MEMBER_DOCS = NO
ALWAYS_DETAILED_SEC = YES
INLINE_SIMPLE_STRUCTS = YES
JAVADOC_AUTOBRIEF = YES
OPTIMIZE_OUTPUT_FOR_C = YES
TYPEDEF_HIDES_STRUCT = YES
MAX_INITIALIZER_LINES = 0
PREDEFINED += DOXYGEN
SKIP_FUNCTION_MACROS = NO
IGNORE_PREFIX = PICOTEST_ \
PicoTest
ALIASES += example_file{1}="@ref \1 @copybrief \1 \n"
# This tag implements a quasi-intelligent brief description abbreviator that is
# used to form the text in various listings. Each string in this list, if found
# as the leading text of the brief description, will be stripped from the text
# and the result, after processing the whole list, is used as the annotated
# text. Otherwise, the brief description is used as-is. If left blank, the
# following values are used ($name is automatically replaced with the name of
# the entity):The $name class, The $name widget, The $name file, is, provides,
# specifies, contains, represents, a, an and the.
ABBREVIATE_BRIEF = "The $name class" \
"The $name widget" \
"The $name file" \
"This file" \
"This header file" \
is \
provides \
specifies \
contains \
represents \
defines \
a \
an \
the