-
Notifications
You must be signed in to change notification settings - Fork 2
/
doxygen.conf
35 lines (34 loc) · 925 Bytes
/
doxygen.conf
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
# Doxygen config file for cligraph
# see http://www.stack.nl/~dimitri/doxygen/manual/config.html
# for details on formatting.
#
# NOTE: any tags not seen below are assumed to have their
# default values set
## PROJECT CONFIG ##############################
PROJECT_NAME = "cligraph"
PROJECT_NUMBER = 0.1
PROJECT_BRIEF = "an ncurses graphing calculator"
## END PROJECT CONFIG ############################
#
## INPUT CONFIG ##############################
EXCLUDE = plugin
FILE_PATTERNS = *.c *.h
INPUT = "."
RECURSIVE = yes
## END INPUT CONFIG ############################
#
## OUTPUT CONFIG ##############################
EXTRACT_ALL = NO
MAN_OUTPUT = "man"
GENERATE_BUGLIST = YES
GENERATE_TODOLIST = YES
GENERATE_HTML = NO
GENERATE_LATEX = NO
GENERATE_MAN = YES
INTERNAL_DOCS = NO
MAN_LINKS = YES
OUTPUT_DIRECTORY = "doc"
OPTIMIZE_OUTPUT_FOR_C = YES
SORT_BRIEF_DOCS = YES
## END OUTPUT CONFIG ############################
#