Doxyfile revision 1.2 1 1.1 christos # Doxyfile 1.5.1
2 1.1 christos
3 1.1 christos # This file describes the settings to be used by the documentation system
4 1.1 christos # doxygen (www.doxygen.org) for a project
5 1.1 christos #
6 1.1 christos # All text after a hash (#) is considered a comment and will be ignored
7 1.1 christos # The format is:
8 1.1 christos # TAG = value [value, ...]
9 1.1 christos # For lists items can also be appended using:
10 1.1 christos # TAG += value [value, ...]
11 1.1 christos # Values that contain spaces should be placed between quotes (" ")
12 1.1 christos
13 1.1 christos #---------------------------------------------------------------------------
14 1.1 christos # Project related configuration options
15 1.1 christos #---------------------------------------------------------------------------
16 1.1 christos
17 1.1 christos # The PROJECT_NAME tag is a single word (or a sequence of words surrounded
18 1.1 christos # by quotes) that should identify the project.
19 1.1 christos
20 1.1 christos PROJECT_NAME = libevent
21 1.1 christos
22 1.1 christos # Place all output under 'doxygen/'
23 1.1 christos
24 1.1 christos OUTPUT_DIRECTORY = doxygen/
25 1.1 christos
26 1.1 christos # If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen
27 1.1 christos # will interpret the first line (until the first dot) of a JavaDoc-style
28 1.1 christos # comment as the brief description. If set to NO, the JavaDoc
29 1.1 christos # comments will behave just like the Qt-style comments (thus requiring an
30 1.1 christos # explicit @brief command for a brief description.
31 1.1 christos
32 1.1 christos JAVADOC_AUTOBRIEF = YES
33 1.1 christos
34 1.1 christos # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C
35 1.1 christos # sources only. Doxygen will then generate output that is more tailored for C.
36 1.1 christos # For instance, some of the names that are used will be different. The list
37 1.1 christos # of all members will be omitted, etc.
38 1.1 christos
39 1.1 christos OPTIMIZE_OUTPUT_FOR_C = YES
40 1.1 christos
41 1.1 christos # If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the
42 1.1 christos # brief documentation of file, namespace and class members alphabetically
43 1.1 christos # by member name. If set to NO (the default) the members will appear in
44 1.1 christos # declaration order.
45 1.1 christos
46 1.1 christos SORT_BRIEF_DOCS = YES
47 1.1 christos
48 1.1 christos # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag
49 1.1 christos # can be used to strip a user-defined part of the path. Stripping is
50 1.1 christos # only done if one of the specified strings matches the left-hand part of
51 1.1 christos # the path. The tag can be used to show relative paths in the file list.
52 1.1 christos # If left blank the directory from which doxygen is run is used as the
53 1.1 christos # path to strip.
54 1.1 christos
55 1.1 christos STRIP_FROM_PATH = include/
56 1.1 christos
57 1.1 christos #---------------------------------------------------------------------------
58 1.1 christos # configuration options related to the input files
59 1.1 christos #---------------------------------------------------------------------------
60 1.1 christos
61 1.1 christos # The INPUT tag can be used to specify the files and/or directories that contain
62 1.1 christos # documented source files. You may enter file names like "myfile.cpp" or
63 1.1 christos # directories like "/usr/src/myproject". Separate the files or directories
64 1.1 christos # with spaces.
65 1.1 christos
66 1.1 christos INPUT = \
67 1.1 christos include/event2/buffer.h \
68 1.1 christos include/event2/buffer_compat.h \
69 1.1 christos include/event2/bufferevent.h \
70 1.1 christos include/event2/bufferevent_compat.h \
71 1.1 christos include/event2/bufferevent_ssl.h \
72 1.1 christos include/event2/dns.h \
73 1.1 christos include/event2/dns_compat.h \
74 1.1 christos include/event2/event.h \
75 1.1 christos include/event2/event_compat.h \
76 1.1 christos include/event2/http.h \
77 1.1 christos include/event2/http_compat.h \
78 1.1 christos include/event2/listener.h \
79 1.1 christos include/event2/rpc.h \
80 1.1 christos include/event2/rpc_compat.h \
81 1.1 christos include/event2/tag.h \
82 1.1 christos include/event2/tag_compat.h \
83 1.1 christos include/event2/thread.h \
84 1.1 christos include/event2/util.h
85 1.1 christos
86 1.1 christos #---------------------------------------------------------------------------
87 1.1 christos # configuration options related to the HTML output
88 1.1 christos #---------------------------------------------------------------------------
89 1.1 christos
90 1.1 christos # If the GENERATE_HTML tag is set to YES (the default) Doxygen will
91 1.1 christos # generate HTML output.
92 1.1 christos
93 1.1 christos GENERATE_HTML = YES
94 1.1 christos
95 1.1 christos #---------------------------------------------------------------------------
96 1.1 christos # configuration options related to the LaTeX output
97 1.1 christos #---------------------------------------------------------------------------
98 1.1 christos
99 1.1 christos # If the GENERATE_LATEX tag is set to YES (the default) Doxygen will
100 1.1 christos # generate Latex output.
101 1.1 christos
102 1.1 christos GENERATE_LATEX = YES
103 1.1 christos
104 1.1 christos # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put.
105 1.1 christos # If a relative path is entered the value of OUTPUT_DIRECTORY will be
106 1.1 christos # put in front of it. If left blank `latex' will be used as the default path.
107 1.1 christos
108 1.1 christos LATEX_OUTPUT = latex
109 1.1 christos
110 1.1 christos # The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be
111 1.1 christos # invoked. If left blank `latex' will be used as the default command name.
112 1.1 christos
113 1.1 christos LATEX_CMD_NAME = latex
114 1.1 christos
115 1.1 christos # The MAKEINDEX_CMD_NAME tag can be used to specify the command name to
116 1.1 christos # generate index for LaTeX. If left blank `makeindex' will be used as the
117 1.1 christos # default command name.
118 1.1 christos
119 1.1 christos MAKEINDEX_CMD_NAME = makeindex
120 1.1 christos
121 1.1 christos # If the COMPACT_LATEX tag is set to YES Doxygen generates more compact
122 1.1 christos # LaTeX documents. This may be useful for small projects and may help to
123 1.1 christos # save some trees in general.
124 1.1 christos
125 1.1 christos COMPACT_LATEX = NO
126 1.1 christos
127 1.1 christos # The PAPER_TYPE tag can be used to set the paper type that is used
128 1.1 christos # by the printer. Possible values are: a4, a4wide, letter, legal and
129 1.1 christos # executive. If left blank a4wide will be used.
130 1.1 christos
131 1.1 christos PAPER_TYPE = a4wide
132 1.1 christos
133 1.1 christos # The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX
134 1.1 christos # packages that should be included in the LaTeX output.
135 1.1 christos
136 1.1 christos EXTRA_PACKAGES =
137 1.1 christos
138 1.1 christos # The LATEX_HEADER tag can be used to specify a personal LaTeX header for
139 1.1 christos # the generated latex document. The header should contain everything until
140 1.1 christos # the first chapter. If it is left blank doxygen will generate a
141 1.1 christos # standard header. Notice: only use this tag if you know what you are doing!
142 1.1 christos
143 1.1 christos LATEX_HEADER =
144 1.1 christos
145 1.1 christos # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated
146 1.1 christos # is prepared for conversion to pdf (using ps2pdf). The pdf file will
147 1.1 christos # contain links (just like the HTML output) instead of page references
148 1.1 christos # This makes the output suitable for online browsing using a pdf viewer.
149 1.1 christos
150 1.1 christos PDF_HYPERLINKS = NO
151 1.1 christos
152 1.1 christos # If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of
153 1.1 christos # plain latex in the generated Makefile. Set this option to YES to get a
154 1.1 christos # higher quality PDF documentation.
155 1.1 christos
156 1.1 christos USE_PDFLATEX = YES
157 1.1 christos
158 1.1 christos # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode.
159 1.1 christos # command to the generated LaTeX files. This will instruct LaTeX to keep
160 1.1 christos # running if errors occur, instead of asking the user for help.
161 1.1 christos # This option is also used when generating formulas in HTML.
162 1.1 christos
163 1.1 christos LATEX_BATCHMODE = NO
164 1.1 christos
165 1.1 christos # If LATEX_HIDE_INDICES is set to YES then doxygen will not
166 1.1 christos # include the index chapters (such as File Index, Compound Index, etc.)
167 1.1 christos # in the output.
168 1.1 christos
169 1.1 christos LATEX_HIDE_INDICES = NO
170 1.1 christos
171 1.1 christos #---------------------------------------------------------------------------
172 1.1 christos # configuration options related to the man page output
173 1.1 christos #---------------------------------------------------------------------------
174 1.1 christos
175 1.1 christos # If the GENERATE_MAN tag is set to YES (the default) Doxygen will
176 1.1 christos # generate man pages
177 1.1 christos
178 1.2 christos GENERATE_MAN = YES
179 1.1 christos
180 1.1 christos # The MAN_EXTENSION tag determines the extension that is added to
181 1.1 christos # the generated man pages (default is the subroutine's section .3)
182 1.1 christos
183 1.1 christos MAN_EXTENSION = .3
184 1.1 christos
185 1.1 christos # If the MAN_LINKS tag is set to YES and Doxygen generates man output,
186 1.1 christos # then it will generate one additional man file for each entity
187 1.1 christos # documented in the real man page(s). These additional files
188 1.1 christos # only source the real man page, but without them the man command
189 1.1 christos # would be unable to find the correct page. The default is NO.
190 1.1 christos
191 1.1 christos MAN_LINKS = YES
192 1.1 christos
193 1.1 christos #---------------------------------------------------------------------------
194 1.1 christos # Configuration options related to the preprocessor
195 1.1 christos #---------------------------------------------------------------------------
196 1.1 christos
197 1.1 christos # If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will
198 1.1 christos # evaluate all C-preprocessor directives found in the sources and include
199 1.1 christos # files.
200 1.1 christos
201 1.1 christos ENABLE_PREPROCESSING = YES
202 1.1 christos
203 1.1 christos # If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro
204 1.1 christos # names in the source code. If set to NO (the default) only conditional
205 1.1 christos # compilation will be performed. Macro expansion can be done in a controlled
206 1.1 christos # way by setting EXPAND_ONLY_PREDEF to YES.
207 1.1 christos
208 1.1 christos MACRO_EXPANSION = NO
209 1.1 christos
210 1.1 christos # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES
211 1.1 christos # then the macro expansion is limited to the macros specified with the
212 1.1 christos # PREDEFINED and EXPAND_AS_DEFINED tags.
213 1.1 christos
214 1.1 christos EXPAND_ONLY_PREDEF = NO
215 1.1 christos
216 1.1 christos # If the SEARCH_INCLUDES tag is set to YES (the default) the includes files
217 1.1 christos # in the INCLUDE_PATH (see below) will be search if a #include is found.
218 1.1 christos
219 1.1 christos SEARCH_INCLUDES = YES
220 1.1 christos
221 1.1 christos # The INCLUDE_PATH tag can be used to specify one or more directories that
222 1.1 christos # contain include files that are not input files but should be processed by
223 1.1 christos # the preprocessor.
224 1.1 christos
225 1.1 christos INCLUDE_PATH =
226 1.1 christos
227 1.1 christos # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard
228 1.1 christos # patterns (like *.h and *.hpp) to filter out the header-files in the
229 1.1 christos # directories. If left blank, the patterns specified with FILE_PATTERNS will
230 1.1 christos # be used.
231 1.1 christos
232 1.1 christos INCLUDE_FILE_PATTERNS =
233 1.1 christos
234 1.1 christos # The PREDEFINED tag can be used to specify one or more macro names that
235 1.1 christos # are defined before the preprocessor is started (similar to the -D option of
236 1.1 christos # gcc). The argument of the tag is a list of macros of the form: name
237 1.1 christos # or name=definition (no spaces). If the definition and the = are
238 1.1 christos # omitted =1 is assumed. To prevent a macro definition from being
239 1.1 christos # undefined via #undef or recursively expanded use the := operator
240 1.1 christos # instead of the = operator.
241 1.1 christos
242 1.1 christos PREDEFINED = TAILQ_ENTRY RB_ENTRY _EVENT_DEFINED_TQENTRY _EVENT_IN_DOXYGEN
243 1.1 christos
244 1.1 christos # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then
245 1.1 christos # this tag can be used to specify a list of macro names that should be expanded.
246 1.1 christos # The macro definition that is found in the sources will be used.
247 1.1 christos # Use the PREDEFINED tag if you want to use a different macro definition.
248 1.1 christos
249 1.1 christos EXPAND_AS_DEFINED =
250 1.1 christos
251 1.1 christos # If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then
252 1.1 christos # doxygen's preprocessor will remove all function-like macros that are alone
253 1.1 christos # on a line, have an all uppercase name, and do not end with a semicolon. Such
254 1.1 christos # function macros are typically used for boiler-plate code, and will confuse
255 1.1 christos # the parser if not removed.
256 1.1 christos
257 1.1 christos SKIP_FUNCTION_MACROS = YES
258