-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDoxyfile
More file actions
47 lines (39 loc) · 1.22 KB
/
Doxyfile
File metadata and controls
47 lines (39 loc) · 1.22 KB
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
# Doxygen configuration file
# General configuration
PROJECT_NAME = "Playdate Utility Library"
OUTPUT_DIRECTORY = "docs"
CREATE_SUBDIRS = YES
OPTIMIZE_OUTPUT_FOR_C = YES
RECURSIVE = YES
INPUT = .
FILE_PATTERNS = *.h README.md DOC_MAINPAGE.md
# By using $(PWD), we can prevent README.md at root to be included in the doc.
EXCLUDE_PATTERNS = */test/* */tests/* */src/* */lib/* $(PWD)/README.md
# Documentation options
EXTRACT_ALL = NO
EXTRACT_PRIVATE = YES
EXTRACT_STATIC = YES
EXTRACT_LOCAL_CLASSES = YES
ALIASES += "license=@par License:"
SORT_MEMBER_DOCS = NO
# Markdown support
USE_MDFILE_AS_MAINPAGE = DOC_MAINPAGE.md
MARKDOWN_SUPPORT = YES
# HTML output configuration
GENERATE_HTML = YES
GENERATE_LATEX = NO
GENERATE_MAN = NO
GENERATE_RTF = NO
GENERATE_XML = NO
GENERATE_DOCBOOK = NO
# Source browser settings
SOURCE_BROWSER = YES
INLINE_SOURCES = YES
STRIP_CODE_COMMENTS = NO
# Sort options
SORT_BRIEF_DOCS = YES
SORT_BY_SCOPE_NAME = YES
SORT_MEMBERS_CTORS_1ST = YES
SORT_GROUP_NAMES = YES
# Additional settings
GENERATE_TREEVIEW = YES