-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDoxyfile
65 lines (58 loc) · 2.06 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
##
# ad -- ASCII dump
# Doxyfile
#
# Copyright (C) 2024 Paul J. Lucas
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
##
PROJECT_NAME = "ad"
PROJECT_BRIEF = "ASCII file dump that can also search for and highlight strings or numbers."
INPUT = README.md src
FILE_PATTERNS = *.c *.h *.md
FILTER_PATTERNS = "*.h=sed s/[A-Z][A-Z_]*[A-Z]_H_INLINE/inline/"
PREDEFINED = __GNUC__
EXCLUDE = src/config.h
OUTPUT_DIRECTORY = docs
HTML_EXTRA_STYLESHEET = ad.css
HTML_OUTPUT = .
EXTRACT_ALL = YES
EXTRACT_PACKAGE = YES
EXTRACT_STATIC = YES
DISABLE_INDEX = YES
GENERATE_LATEX = NO
GENERATE_TREEVIEW = YES
ALPHABETICAL_INDEX = YES
DISTRIBUTE_GROUP_DOC = YES
ENUM_VALUES_PER_LINE = 1
FORCE_LOCAL_INCLUDES = YES
INTERNAL_DOCS = YES
JAVADOC_AUTOBRIEF = YES
MARKDOWN_SUPPORT = YES
MAX_INITIALIZER_LINES = 0
OPTIMIZE_OUTPUT_FOR_C = YES
QUIET = YES
REFERENCED_BY_RELATION = YES
REFERENCES_LINK_SOURCE = YES
REFERENCES_RELATION = YES
SHOW_INCLUDE_FILES = NO
SORT_BRIEF_DOCS = YES
SORT_GROUP_NAMES = YES
SOURCE_BROWSER = YES
STRIP_CODE_COMMENTS = NO
TAB_SIZE = 2
TYPEDEF_HIDES_STRUCT = YES
USE_MDFILE_AS_MAINPAGE = README.md
WARN_NO_PARAMDOC = YES
# vim:set et sw=4 ts=4: