xref: /third_party/jerryscript/Doxyfile (revision 425bb815)
1425bb815Sopenharmony_ci# Doxyfile 1.8.9.1
2425bb815Sopenharmony_ci
3425bb815Sopenharmony_ci# This file describes the settings to be used by the documentation system
4425bb815Sopenharmony_ci# doxygen (www.doxygen.org) for a project.
5425bb815Sopenharmony_ci#
6425bb815Sopenharmony_ci# All text after a double hash (##) is considered a comment and is placed in
7425bb815Sopenharmony_ci# front of the TAG it is preceding.
8425bb815Sopenharmony_ci#
9425bb815Sopenharmony_ci# All text after a single hash (#) is considered a comment and will be ignored.
10425bb815Sopenharmony_ci# The format is:
11425bb815Sopenharmony_ci# TAG = value [value, ...]
12425bb815Sopenharmony_ci# For lists, items can also be appended using:
13425bb815Sopenharmony_ci# TAG += value [value, ...]
14425bb815Sopenharmony_ci# Values that contain spaces should be placed between quotes (\" \").
15425bb815Sopenharmony_ci
16425bb815Sopenharmony_ci#---------------------------------------------------------------------------
17425bb815Sopenharmony_ci# Project related configuration options
18425bb815Sopenharmony_ci#---------------------------------------------------------------------------
19425bb815Sopenharmony_ci
20425bb815Sopenharmony_ci# This tag specifies the encoding used for all characters in the config file
21425bb815Sopenharmony_ci# that follow. The default is UTF-8 which is also the encoding used for all text
22425bb815Sopenharmony_ci# before the first occurrence of this tag. Doxygen uses libiconv (or the iconv
23425bb815Sopenharmony_ci# built into libc) for the transcoding. See http://www.gnu.org/software/libiconv
24425bb815Sopenharmony_ci# for the list of possible encodings.
25425bb815Sopenharmony_ci# The default value is: UTF-8.
26425bb815Sopenharmony_ci
27425bb815Sopenharmony_ciDOXYFILE_ENCODING      = UTF-8
28425bb815Sopenharmony_ci
29425bb815Sopenharmony_ci# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by
30425bb815Sopenharmony_ci# double-quotes, unless you are using Doxywizard) that should identify the
31425bb815Sopenharmony_ci# project for which the documentation is generated. This name is used in the
32425bb815Sopenharmony_ci# title of most generated pages and in a few other places.
33425bb815Sopenharmony_ci# The default value is: My Project.
34425bb815Sopenharmony_ci
35425bb815Sopenharmony_ciPROJECT_NAME           = "JerryScript"
36425bb815Sopenharmony_ci
37425bb815Sopenharmony_ci# The PROJECT_NUMBER tag can be used to enter a project or revision number. This
38425bb815Sopenharmony_ci# could be handy for archiving the generated documentation or if some version
39425bb815Sopenharmony_ci# control system is used.
40425bb815Sopenharmony_ci
41425bb815Sopenharmony_ciPROJECT_NUMBER         =
42425bb815Sopenharmony_ci
43425bb815Sopenharmony_ci# Using the PROJECT_BRIEF tag one can provide an optional one line description
44425bb815Sopenharmony_ci# for a project that appears at the top of each page and should give viewer a
45425bb815Sopenharmony_ci# quick idea about the purpose of the project. Keep the description short.
46425bb815Sopenharmony_ci
47425bb815Sopenharmony_ciPROJECT_BRIEF          = "JavaScript Engine for Internet of Things"
48425bb815Sopenharmony_ci
49425bb815Sopenharmony_ci# With the PROJECT_LOGO tag one can specify a logo or an icon that is included
50425bb815Sopenharmony_ci# in the documentation. The maximum height of the logo should not exceed 55
51425bb815Sopenharmony_ci# pixels and the maximum width should not exceed 200 pixels. Doxygen will copy
52425bb815Sopenharmony_ci# the logo to the output directory.
53425bb815Sopenharmony_ci
54425bb815Sopenharmony_ciPROJECT_LOGO           =
55425bb815Sopenharmony_ci
56425bb815Sopenharmony_ci# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path
57425bb815Sopenharmony_ci# into which the generated documentation will be written. If a relative path is
58425bb815Sopenharmony_ci# entered, it will be relative to the location where doxygen was started. If
59425bb815Sopenharmony_ci# left blank the current directory will be used.
60425bb815Sopenharmony_ci
61425bb815Sopenharmony_ciOUTPUT_DIRECTORY       = "docs/doxygen"
62425bb815Sopenharmony_ci
63425bb815Sopenharmony_ci# If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub-
64425bb815Sopenharmony_ci# directories (in 2 levels) under the output directory of each output format and
65425bb815Sopenharmony_ci# will distribute the generated files over these directories. Enabling this
66425bb815Sopenharmony_ci# option can be useful when feeding doxygen a huge amount of source files, where
67425bb815Sopenharmony_ci# putting all generated files in the same directory would otherwise causes
68425bb815Sopenharmony_ci# performance problems for the file system.
69425bb815Sopenharmony_ci# The default value is: NO.
70425bb815Sopenharmony_ci
71425bb815Sopenharmony_ciCREATE_SUBDIRS         = NO
72425bb815Sopenharmony_ci
73425bb815Sopenharmony_ci# If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII
74425bb815Sopenharmony_ci# characters to appear in the names of generated files. If set to NO, non-ASCII
75425bb815Sopenharmony_ci# characters will be escaped, for example _xE3_x81_x84 will be used for Unicode
76425bb815Sopenharmony_ci# U+3044.
77425bb815Sopenharmony_ci# The default value is: NO.
78425bb815Sopenharmony_ci
79425bb815Sopenharmony_ci# ALLOW_UNICODE_NAMES    = NO
80425bb815Sopenharmony_ci
81425bb815Sopenharmony_ci# The OUTPUT_LANGUAGE tag is used to specify the language in which all
82425bb815Sopenharmony_ci# documentation generated by doxygen is written. Doxygen will use this
83425bb815Sopenharmony_ci# information to generate all constant output in the proper language.
84425bb815Sopenharmony_ci# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese,
85425bb815Sopenharmony_ci# Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States),
86425bb815Sopenharmony_ci# Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian,
87425bb815Sopenharmony_ci# Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages),
88425bb815Sopenharmony_ci# Korean, Korean-en (Korean with English messages), Latvian, Lithuanian,
89425bb815Sopenharmony_ci# Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian,
90425bb815Sopenharmony_ci# Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish,
91425bb815Sopenharmony_ci# Ukrainian and Vietnamese.
92425bb815Sopenharmony_ci# The default value is: English.
93425bb815Sopenharmony_ci
94425bb815Sopenharmony_ciOUTPUT_LANGUAGE        = English
95425bb815Sopenharmony_ci
96425bb815Sopenharmony_ci# If the BRIEF_MEMBER_DESC tag is set to YES, doxygen will include brief member
97425bb815Sopenharmony_ci# descriptions after the members that are listed in the file and class
98425bb815Sopenharmony_ci# documentation (similar to Javadoc). Set to NO to disable this.
99425bb815Sopenharmony_ci# The default value is: YES.
100425bb815Sopenharmony_ci
101425bb815Sopenharmony_ciBRIEF_MEMBER_DESC      = YES
102425bb815Sopenharmony_ci
103425bb815Sopenharmony_ci# If the REPEAT_BRIEF tag is set to YES, doxygen will prepend the brief
104425bb815Sopenharmony_ci# description of a member or function before the detailed description
105425bb815Sopenharmony_ci#
106425bb815Sopenharmony_ci# Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the
107425bb815Sopenharmony_ci# brief descriptions will be completely suppressed.
108425bb815Sopenharmony_ci# The default value is: YES.
109425bb815Sopenharmony_ci
110425bb815Sopenharmony_ciREPEAT_BRIEF           = YES
111425bb815Sopenharmony_ci
112425bb815Sopenharmony_ci# This tag implements a quasi-intelligent brief description abbreviator that is
113425bb815Sopenharmony_ci# used to form the text in various listings. Each string in this list, if found
114425bb815Sopenharmony_ci# as the leading text of the brief description, will be stripped from the text
115425bb815Sopenharmony_ci# and the result, after processing the whole list, is used as the annotated
116425bb815Sopenharmony_ci# text. Otherwise, the brief description is used as-is. If left blank, the
117425bb815Sopenharmony_ci# following values are used ($name is automatically replaced with the name of
118425bb815Sopenharmony_ci# the entity):The $name class, The $name widget, The $name file, is, provides,
119425bb815Sopenharmony_ci# specifies, contains, represents, a, an and the.
120425bb815Sopenharmony_ci
121425bb815Sopenharmony_ciABBREVIATE_BRIEF       =
122425bb815Sopenharmony_ci
123425bb815Sopenharmony_ci# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then
124425bb815Sopenharmony_ci# doxygen will generate a detailed section even if there is only a brief
125425bb815Sopenharmony_ci# description.
126425bb815Sopenharmony_ci# The default value is: NO.
127425bb815Sopenharmony_ci
128425bb815Sopenharmony_ciALWAYS_DETAILED_SEC    = YES
129425bb815Sopenharmony_ci
130425bb815Sopenharmony_ci# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all
131425bb815Sopenharmony_ci# inherited members of a class in the documentation of that class as if those
132425bb815Sopenharmony_ci# members were ordinary class members. Constructors, destructors and assignment
133425bb815Sopenharmony_ci# operators of the base classes will not be shown.
134425bb815Sopenharmony_ci# The default value is: NO.
135425bb815Sopenharmony_ci
136425bb815Sopenharmony_ciINLINE_INHERITED_MEMB  = NO
137425bb815Sopenharmony_ci
138425bb815Sopenharmony_ci# If the FULL_PATH_NAMES tag is set to YES, doxygen will prepend the full path
139425bb815Sopenharmony_ci# before files name in the file list and in the header files. If set to NO the
140425bb815Sopenharmony_ci# shortest path that makes the file name unique will be used
141425bb815Sopenharmony_ci# The default value is: YES.
142425bb815Sopenharmony_ci
143425bb815Sopenharmony_ciFULL_PATH_NAMES        = YES
144425bb815Sopenharmony_ci
145425bb815Sopenharmony_ci# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path.
146425bb815Sopenharmony_ci# Stripping is only done if one of the specified strings matches the left-hand
147425bb815Sopenharmony_ci# part of the path. The tag can be used to show relative paths in the file list.
148425bb815Sopenharmony_ci# If left blank the directory from which doxygen is run is used as the path to
149425bb815Sopenharmony_ci# strip.
150425bb815Sopenharmony_ci#
151425bb815Sopenharmony_ci# Note that you can specify absolute paths here, but also relative paths, which
152425bb815Sopenharmony_ci# will be relative from the directory where doxygen is started.
153425bb815Sopenharmony_ci# This tag requires that the tag FULL_PATH_NAMES is set to YES.
154425bb815Sopenharmony_ci
155425bb815Sopenharmony_ciSTRIP_FROM_PATH        =
156425bb815Sopenharmony_ci
157425bb815Sopenharmony_ci# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the
158425bb815Sopenharmony_ci# path mentioned in the documentation of a class, which tells the reader which
159425bb815Sopenharmony_ci# header file to include in order to use a class. If left blank only the name of
160425bb815Sopenharmony_ci# the header file containing the class definition is used. Otherwise one should
161425bb815Sopenharmony_ci# specify the list of include paths that are normally passed to the compiler
162425bb815Sopenharmony_ci# using the -I flag.
163425bb815Sopenharmony_ci
164425bb815Sopenharmony_ciSTRIP_FROM_INC_PATH    =
165425bb815Sopenharmony_ci
166425bb815Sopenharmony_ci# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but
167425bb815Sopenharmony_ci# less readable) file names. This can be useful is your file systems doesn't
168425bb815Sopenharmony_ci# support long names like on DOS, Mac, or CD-ROM.
169425bb815Sopenharmony_ci# The default value is: NO.
170425bb815Sopenharmony_ci
171425bb815Sopenharmony_ciSHORT_NAMES            = NO
172425bb815Sopenharmony_ci
173425bb815Sopenharmony_ci# If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the
174425bb815Sopenharmony_ci# first line (until the first dot) of a Javadoc-style comment as the brief
175425bb815Sopenharmony_ci# description. If set to NO, the Javadoc-style will behave just like regular Qt-
176425bb815Sopenharmony_ci# style comments (thus requiring an explicit @brief command for a brief
177425bb815Sopenharmony_ci# description.)
178425bb815Sopenharmony_ci# The default value is: NO.
179425bb815Sopenharmony_ci
180425bb815Sopenharmony_ciJAVADOC_AUTOBRIEF      = YES
181425bb815Sopenharmony_ci
182425bb815Sopenharmony_ci# If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first
183425bb815Sopenharmony_ci# line (until the first dot) of a Qt-style comment as the brief description. If
184425bb815Sopenharmony_ci# set to NO, the Qt-style will behave just like regular Qt-style comments (thus
185425bb815Sopenharmony_ci# requiring an explicit \brief command for a brief description.)
186425bb815Sopenharmony_ci# The default value is: NO.
187425bb815Sopenharmony_ci
188425bb815Sopenharmony_ciQT_AUTOBRIEF           = NO
189425bb815Sopenharmony_ci
190425bb815Sopenharmony_ci# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a
191425bb815Sopenharmony_ci# multi-line C++ special comment block (i.e. a block of //! or /// comments) as
192425bb815Sopenharmony_ci# a brief description. This used to be the default behavior. The new default is
193425bb815Sopenharmony_ci# to treat a multi-line C++ comment block as a detailed description. Set this
194425bb815Sopenharmony_ci# tag to YES if you prefer the old behavior instead.
195425bb815Sopenharmony_ci#
196425bb815Sopenharmony_ci# Note that setting this tag to YES also means that rational rose comments are
197425bb815Sopenharmony_ci# not recognized any more.
198425bb815Sopenharmony_ci# The default value is: NO.
199425bb815Sopenharmony_ci
200425bb815Sopenharmony_ciMULTILINE_CPP_IS_BRIEF = NO
201425bb815Sopenharmony_ci
202425bb815Sopenharmony_ci# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the
203425bb815Sopenharmony_ci# documentation from any documented member that it re-implements.
204425bb815Sopenharmony_ci# The default value is: YES.
205425bb815Sopenharmony_ci
206425bb815Sopenharmony_ciINHERIT_DOCS           = YES
207425bb815Sopenharmony_ci
208425bb815Sopenharmony_ci# If the SEPARATE_MEMBER_PAGES tag is set to YES then doxygen will produce a new
209425bb815Sopenharmony_ci# page for each member. If set to NO, the documentation of a member will be part
210425bb815Sopenharmony_ci# of the file/class/namespace that contains it.
211425bb815Sopenharmony_ci# The default value is: NO.
212425bb815Sopenharmony_ci
213425bb815Sopenharmony_ciSEPARATE_MEMBER_PAGES  = NO
214425bb815Sopenharmony_ci
215425bb815Sopenharmony_ci# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen
216425bb815Sopenharmony_ci# uses this value to replace tabs by spaces in code fragments.
217425bb815Sopenharmony_ci# Minimum value: 1, maximum value: 16, default value: 4.
218425bb815Sopenharmony_ci
219425bb815Sopenharmony_ciTAB_SIZE               = 2
220425bb815Sopenharmony_ci
221425bb815Sopenharmony_ci# This tag can be used to specify a number of aliases that act as commands in
222425bb815Sopenharmony_ci# the documentation. An alias has the form:
223425bb815Sopenharmony_ci# name=value
224425bb815Sopenharmony_ci# For example adding
225425bb815Sopenharmony_ci# "sideeffect=@par Side Effects:\n"
226425bb815Sopenharmony_ci# will allow you to put the command \sideeffect (or @sideeffect) in the
227425bb815Sopenharmony_ci# documentation, which will result in a user-defined paragraph with heading
228425bb815Sopenharmony_ci# "Side Effects:". You can put \n's in the value part of an alias to insert
229425bb815Sopenharmony_ci# newlines.
230425bb815Sopenharmony_ci
231425bb815Sopenharmony_ciALIASES                =
232425bb815Sopenharmony_ci
233425bb815Sopenharmony_ci# This tag can be used to specify a number of word-keyword mappings (TCL only).
234425bb815Sopenharmony_ci# A mapping has the form "name=value". For example adding "class=itcl::class"
235425bb815Sopenharmony_ci# will allow you to use the command class in the itcl::class meaning.
236425bb815Sopenharmony_ci
237425bb815Sopenharmony_ciTCL_SUBST              =
238425bb815Sopenharmony_ci
239425bb815Sopenharmony_ci# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources
240425bb815Sopenharmony_ci# only. Doxygen will then generate output that is more tailored for C. For
241425bb815Sopenharmony_ci# instance, some of the names that are used will be different. The list of all
242425bb815Sopenharmony_ci# members will be omitted, etc.
243425bb815Sopenharmony_ci# The default value is: NO.
244425bb815Sopenharmony_ci
245425bb815Sopenharmony_ciOPTIMIZE_OUTPUT_FOR_C  = YES
246425bb815Sopenharmony_ci
247425bb815Sopenharmony_ci# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or
248425bb815Sopenharmony_ci# Python sources only. Doxygen will then generate output that is more tailored
249425bb815Sopenharmony_ci# for that language. For instance, namespaces will be presented as packages,
250425bb815Sopenharmony_ci# qualified scopes will look different, etc.
251425bb815Sopenharmony_ci# The default value is: NO.
252425bb815Sopenharmony_ci
253425bb815Sopenharmony_ciOPTIMIZE_OUTPUT_JAVA   = NO
254425bb815Sopenharmony_ci
255425bb815Sopenharmony_ci# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran
256425bb815Sopenharmony_ci# sources. Doxygen will then generate output that is tailored for Fortran.
257425bb815Sopenharmony_ci# The default value is: NO.
258425bb815Sopenharmony_ci
259425bb815Sopenharmony_ciOPTIMIZE_FOR_FORTRAN   = NO
260425bb815Sopenharmony_ci
261425bb815Sopenharmony_ci# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL
262425bb815Sopenharmony_ci# sources. Doxygen will then generate output that is tailored for VHDL.
263425bb815Sopenharmony_ci# The default value is: NO.
264425bb815Sopenharmony_ci
265425bb815Sopenharmony_ciOPTIMIZE_OUTPUT_VHDL   = NO
266425bb815Sopenharmony_ci
267425bb815Sopenharmony_ci# Doxygen selects the parser to use depending on the extension of the files it
268425bb815Sopenharmony_ci# parses. With this tag you can assign which parser to use for a given
269425bb815Sopenharmony_ci# extension. Doxygen has a built-in mapping, but you can override or extend it
270425bb815Sopenharmony_ci# using this tag. The format is ext=language, where ext is a file extension, and
271425bb815Sopenharmony_ci# language is one of the parsers supported by doxygen: IDL, Java, Javascript,
272425bb815Sopenharmony_ci# C#, C, C++, D, PHP, Objective-C, Python, Fortran (fixed format Fortran:
273425bb815Sopenharmony_ci# FortranFixed, free formatted Fortran: FortranFree, unknown formatted Fortran:
274425bb815Sopenharmony_ci# Fortran. In the later case the parser tries to guess whether the code is fixed
275425bb815Sopenharmony_ci# or free formatted code, this is the default for Fortran type files), VHDL. For
276425bb815Sopenharmony_ci# instance to make doxygen treat .inc files as Fortran files (default is PHP),
277425bb815Sopenharmony_ci# and .f files as C (default is Fortran), use: inc=Fortran f=C.
278425bb815Sopenharmony_ci#
279425bb815Sopenharmony_ci# Note: For files without extension you can use no_extension as a placeholder.
280425bb815Sopenharmony_ci#
281425bb815Sopenharmony_ci# Note that for custom extensions you also need to set FILE_PATTERNS otherwise
282425bb815Sopenharmony_ci# the files are not read by doxygen.
283425bb815Sopenharmony_ci
284425bb815Sopenharmony_ciEXTENSION_MAPPING      =
285425bb815Sopenharmony_ci
286425bb815Sopenharmony_ci# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments
287425bb815Sopenharmony_ci# according to the Markdown format, which allows for more readable
288425bb815Sopenharmony_ci# documentation. See http://daringfireball.net/projects/markdown/ for details.
289425bb815Sopenharmony_ci# The output of markdown processing is further processed by doxygen, so you can
290425bb815Sopenharmony_ci# mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in
291425bb815Sopenharmony_ci# case of backward compatibilities issues.
292425bb815Sopenharmony_ci# The default value is: YES.
293425bb815Sopenharmony_ci
294425bb815Sopenharmony_ciMARKDOWN_SUPPORT       = YES
295425bb815Sopenharmony_ci
296425bb815Sopenharmony_ci# When enabled doxygen tries to link words that correspond to documented
297425bb815Sopenharmony_ci# classes, or namespaces to their corresponding documentation. Such a link can
298425bb815Sopenharmony_ci# be prevented in individual cases by putting a % sign in front of the word or
299425bb815Sopenharmony_ci# globally by setting AUTOLINK_SUPPORT to NO.
300425bb815Sopenharmony_ci# The default value is: YES.
301425bb815Sopenharmony_ci
302425bb815Sopenharmony_ciAUTOLINK_SUPPORT       = YES
303425bb815Sopenharmony_ci
304425bb815Sopenharmony_ci# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want
305425bb815Sopenharmony_ci# to include (a tag file for) the STL sources as input, then you should set this
306425bb815Sopenharmony_ci# tag to YES in order to let doxygen match functions declarations and
307425bb815Sopenharmony_ci# definitions whose arguments contain STL classes (e.g. func(std::string);
308425bb815Sopenharmony_ci# versus func(std::string) {}). This also make the inheritance and collaboration
309425bb815Sopenharmony_ci# diagrams that involve STL classes more complete and accurate.
310425bb815Sopenharmony_ci# The default value is: NO.
311425bb815Sopenharmony_ci
312425bb815Sopenharmony_ciBUILTIN_STL_SUPPORT    = NO
313425bb815Sopenharmony_ci
314425bb815Sopenharmony_ci# If you use Microsoft's C++/CLI language, you should set this option to YES to
315425bb815Sopenharmony_ci# enable parsing support.
316425bb815Sopenharmony_ci# The default value is: NO.
317425bb815Sopenharmony_ci
318425bb815Sopenharmony_ciCPP_CLI_SUPPORT        = NO
319425bb815Sopenharmony_ci
320425bb815Sopenharmony_ci# Set the SIP_SUPPORT tag to YES if your project consists of sip (see:
321425bb815Sopenharmony_ci# http://www.riverbankcomputing.co.uk/software/sip/intro) sources only. Doxygen
322425bb815Sopenharmony_ci# will parse them like normal C++ but will assume all classes use public instead
323425bb815Sopenharmony_ci# of private inheritance when no explicit protection keyword is present.
324425bb815Sopenharmony_ci# The default value is: NO.
325425bb815Sopenharmony_ci
326425bb815Sopenharmony_ciSIP_SUPPORT            = NO
327425bb815Sopenharmony_ci
328425bb815Sopenharmony_ci# For Microsoft's IDL there are propget and propput attributes to indicate
329425bb815Sopenharmony_ci# getter and setter methods for a property. Setting this option to YES will make
330425bb815Sopenharmony_ci# doxygen to replace the get and set methods by a property in the documentation.
331425bb815Sopenharmony_ci# This will only work if the methods are indeed getting or setting a simple
332425bb815Sopenharmony_ci# type. If this is not the case, or you want to show the methods anyway, you
333425bb815Sopenharmony_ci# should set this option to NO.
334425bb815Sopenharmony_ci# The default value is: YES.
335425bb815Sopenharmony_ci
336425bb815Sopenharmony_ciIDL_PROPERTY_SUPPORT   = YES
337425bb815Sopenharmony_ci
338425bb815Sopenharmony_ci# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC
339425bb815Sopenharmony_ci# tag is set to YES then doxygen will reuse the documentation of the first
340425bb815Sopenharmony_ci# member in the group (if any) for the other members of the group. By default
341425bb815Sopenharmony_ci# all members of a group must be documented explicitly.
342425bb815Sopenharmony_ci# The default value is: NO.
343425bb815Sopenharmony_ci
344425bb815Sopenharmony_ciDISTRIBUTE_GROUP_DOC   = YES
345425bb815Sopenharmony_ci
346425bb815Sopenharmony_ci# Set the SUBGROUPING tag to YES to allow class member groups of the same type
347425bb815Sopenharmony_ci# (for instance a group of public functions) to be put as a subgroup of that
348425bb815Sopenharmony_ci# type (e.g. under the Public Functions section). Set it to NO to prevent
349425bb815Sopenharmony_ci# subgrouping. Alternatively, this can be done per class using the
350425bb815Sopenharmony_ci# \nosubgrouping command.
351425bb815Sopenharmony_ci# The default value is: YES.
352425bb815Sopenharmony_ci
353425bb815Sopenharmony_ciSUBGROUPING            = YES
354425bb815Sopenharmony_ci
355425bb815Sopenharmony_ci# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions
356425bb815Sopenharmony_ci# are shown inside the group in which they are included (e.g. using \ingroup)
357425bb815Sopenharmony_ci# instead of on a separate page (for HTML and Man pages) or section (for LaTeX
358425bb815Sopenharmony_ci# and RTF).
359425bb815Sopenharmony_ci#
360425bb815Sopenharmony_ci# Note that this feature does not work in combination with
361425bb815Sopenharmony_ci# SEPARATE_MEMBER_PAGES.
362425bb815Sopenharmony_ci# The default value is: NO.
363425bb815Sopenharmony_ci
364425bb815Sopenharmony_ciINLINE_GROUPED_CLASSES = NO
365425bb815Sopenharmony_ci
366425bb815Sopenharmony_ci# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions
367425bb815Sopenharmony_ci# with only public data fields or simple typedef fields will be shown inline in
368425bb815Sopenharmony_ci# the documentation of the scope in which they are defined (i.e. file,
369425bb815Sopenharmony_ci# namespace, or group documentation), provided this scope is documented. If set
370425bb815Sopenharmony_ci# to NO, structs, classes, and unions are shown on a separate page (for HTML and
371425bb815Sopenharmony_ci# Man pages) or section (for LaTeX and RTF).
372425bb815Sopenharmony_ci# The default value is: NO.
373425bb815Sopenharmony_ci
374425bb815Sopenharmony_ciINLINE_SIMPLE_STRUCTS  = NO
375425bb815Sopenharmony_ci
376425bb815Sopenharmony_ci# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or
377425bb815Sopenharmony_ci# enum is documented as struct, union, or enum with the name of the typedef. So
378425bb815Sopenharmony_ci# typedef struct TypeS {} TypeT, will appear in the documentation as a struct
379425bb815Sopenharmony_ci# with name TypeT. When disabled the typedef will appear as a member of a file,
380425bb815Sopenharmony_ci# namespace, or class. And the struct will be named TypeS. This can typically be
381425bb815Sopenharmony_ci# useful for C code in case the coding convention dictates that all compound
382425bb815Sopenharmony_ci# types are typedef'ed and only the typedef is referenced, never the tag name.
383425bb815Sopenharmony_ci# The default value is: NO.
384425bb815Sopenharmony_ci
385425bb815Sopenharmony_ciTYPEDEF_HIDES_STRUCT   = NO
386425bb815Sopenharmony_ci
387425bb815Sopenharmony_ci# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This
388425bb815Sopenharmony_ci# cache is used to resolve symbols given their name and scope. Since this can be
389425bb815Sopenharmony_ci# an expensive process and often the same symbol appears multiple times in the
390425bb815Sopenharmony_ci# code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small
391425bb815Sopenharmony_ci# doxygen will become slower. If the cache is too large, memory is wasted. The
392425bb815Sopenharmony_ci# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range
393425bb815Sopenharmony_ci# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536
394425bb815Sopenharmony_ci# symbols. At the end of a run doxygen will report the cache usage and suggest
395425bb815Sopenharmony_ci# the optimal cache size from a speed point of view.
396425bb815Sopenharmony_ci# Minimum value: 0, maximum value: 9, default value: 0.
397425bb815Sopenharmony_ci
398425bb815Sopenharmony_ciLOOKUP_CACHE_SIZE      = 0
399425bb815Sopenharmony_ci
400425bb815Sopenharmony_ci#---------------------------------------------------------------------------
401425bb815Sopenharmony_ci# Build related configuration options
402425bb815Sopenharmony_ci#---------------------------------------------------------------------------
403425bb815Sopenharmony_ci
404425bb815Sopenharmony_ci# If the EXTRACT_ALL tag is set to YES, doxygen will assume all entities in
405425bb815Sopenharmony_ci# documentation are documented, even if no documentation was available. Private
406425bb815Sopenharmony_ci# class members and static file members will be hidden unless the
407425bb815Sopenharmony_ci# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES.
408425bb815Sopenharmony_ci# Note: This will also disable the warnings about undocumented members that are
409425bb815Sopenharmony_ci# normally produced when WARNINGS is set to YES.
410425bb815Sopenharmony_ci# The default value is: NO.
411425bb815Sopenharmony_ci
412425bb815Sopenharmony_ciEXTRACT_ALL            = NO
413425bb815Sopenharmony_ci
414425bb815Sopenharmony_ci# If the EXTRACT_PRIVATE tag is set to YES, all private members of a class will
415425bb815Sopenharmony_ci# be included in the documentation.
416425bb815Sopenharmony_ci# The default value is: NO.
417425bb815Sopenharmony_ci
418425bb815Sopenharmony_ciEXTRACT_PRIVATE        = YES
419425bb815Sopenharmony_ci
420425bb815Sopenharmony_ci# If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal
421425bb815Sopenharmony_ci# scope will be included in the documentation.
422425bb815Sopenharmony_ci# The default value is: NO.
423425bb815Sopenharmony_ci
424425bb815Sopenharmony_ciEXTRACT_PACKAGE        = NO
425425bb815Sopenharmony_ci
426425bb815Sopenharmony_ci# If the EXTRACT_STATIC tag is set to YES, all static members of a file will be
427425bb815Sopenharmony_ci# included in the documentation.
428425bb815Sopenharmony_ci# The default value is: NO.
429425bb815Sopenharmony_ci
430425bb815Sopenharmony_ciEXTRACT_STATIC         = YES
431425bb815Sopenharmony_ci
432425bb815Sopenharmony_ci# If the EXTRACT_LOCAL_CLASSES tag is set to YES, classes (and structs) defined
433425bb815Sopenharmony_ci# locally in source files will be included in the documentation. If set to NO,
434425bb815Sopenharmony_ci# only classes defined in header files are included. Does not have any effect
435425bb815Sopenharmony_ci# for Java sources.
436425bb815Sopenharmony_ci# The default value is: YES.
437425bb815Sopenharmony_ci
438425bb815Sopenharmony_ciEXTRACT_LOCAL_CLASSES  = YES
439425bb815Sopenharmony_ci
440425bb815Sopenharmony_ci# This flag is only useful for Objective-C code. If set to YES, local methods,
441425bb815Sopenharmony_ci# which are defined in the implementation section but not in the interface are
442425bb815Sopenharmony_ci# included in the documentation. If set to NO, only methods in the interface are
443425bb815Sopenharmony_ci# included.
444425bb815Sopenharmony_ci# The default value is: NO.
445425bb815Sopenharmony_ci
446425bb815Sopenharmony_ciEXTRACT_LOCAL_METHODS  = YES
447425bb815Sopenharmony_ci
448425bb815Sopenharmony_ci# If this flag is set to YES, the members of anonymous namespaces will be
449425bb815Sopenharmony_ci# extracted and appear in the documentation as a namespace called
450425bb815Sopenharmony_ci# 'anonymous_namespace{file}', where file will be replaced with the base name of
451425bb815Sopenharmony_ci# the file that contains the anonymous namespace. By default anonymous namespace
452425bb815Sopenharmony_ci# are hidden.
453425bb815Sopenharmony_ci# The default value is: NO.
454425bb815Sopenharmony_ci
455425bb815Sopenharmony_ciEXTRACT_ANON_NSPACES   = NO
456425bb815Sopenharmony_ci
457425bb815Sopenharmony_ci# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all
458425bb815Sopenharmony_ci# undocumented members inside documented classes or files. If set to NO these
459425bb815Sopenharmony_ci# members will be included in the various overviews, but no documentation
460425bb815Sopenharmony_ci# section is generated. This option has no effect if EXTRACT_ALL is enabled.
461425bb815Sopenharmony_ci# The default value is: NO.
462425bb815Sopenharmony_ci
463425bb815Sopenharmony_ciHIDE_UNDOC_MEMBERS     = NO
464425bb815Sopenharmony_ci
465425bb815Sopenharmony_ci# If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all
466425bb815Sopenharmony_ci# undocumented classes that are normally visible in the class hierarchy. If set
467425bb815Sopenharmony_ci# to NO, these classes will be included in the various overviews. This option
468425bb815Sopenharmony_ci# has no effect if EXTRACT_ALL is enabled.
469425bb815Sopenharmony_ci# The default value is: NO.
470425bb815Sopenharmony_ci
471425bb815Sopenharmony_ciHIDE_UNDOC_CLASSES     = NO
472425bb815Sopenharmony_ci
473425bb815Sopenharmony_ci# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend
474425bb815Sopenharmony_ci# (class|struct|union) declarations. If set to NO, these declarations will be
475425bb815Sopenharmony_ci# included in the documentation.
476425bb815Sopenharmony_ci# The default value is: NO.
477425bb815Sopenharmony_ci
478425bb815Sopenharmony_ciHIDE_FRIEND_COMPOUNDS  = NO
479425bb815Sopenharmony_ci
480425bb815Sopenharmony_ci# If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any
481425bb815Sopenharmony_ci# documentation blocks found inside the body of a function. If set to NO, these
482425bb815Sopenharmony_ci# blocks will be appended to the function's detailed documentation block.
483425bb815Sopenharmony_ci# The default value is: NO.
484425bb815Sopenharmony_ci
485425bb815Sopenharmony_ciHIDE_IN_BODY_DOCS      = NO
486425bb815Sopenharmony_ci
487425bb815Sopenharmony_ci# The INTERNAL_DOCS tag determines if documentation that is typed after a
488425bb815Sopenharmony_ci# \internal command is included. If the tag is set to NO then the documentation
489425bb815Sopenharmony_ci# will be excluded. Set it to YES to include the internal documentation.
490425bb815Sopenharmony_ci# The default value is: NO.
491425bb815Sopenharmony_ci
492425bb815Sopenharmony_ciINTERNAL_DOCS          = NO
493425bb815Sopenharmony_ci
494425bb815Sopenharmony_ci# If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file
495425bb815Sopenharmony_ci# names in lower-case letters. If set to YES, upper-case letters are also
496425bb815Sopenharmony_ci# allowed. This is useful if you have classes or files whose names only differ
497425bb815Sopenharmony_ci# in case and if your file system supports case sensitive file names. Windows
498425bb815Sopenharmony_ci# and Mac users are advised to set this option to NO.
499425bb815Sopenharmony_ci# The default value is: system dependent.
500425bb815Sopenharmony_ci
501425bb815Sopenharmony_ciCASE_SENSE_NAMES       = YES
502425bb815Sopenharmony_ci
503425bb815Sopenharmony_ci# If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with
504425bb815Sopenharmony_ci# their full class and namespace scopes in the documentation. If set to YES, the
505425bb815Sopenharmony_ci# scope will be hidden.
506425bb815Sopenharmony_ci# The default value is: NO.
507425bb815Sopenharmony_ci
508425bb815Sopenharmony_ciHIDE_SCOPE_NAMES       = NO
509425bb815Sopenharmony_ci
510425bb815Sopenharmony_ci# If the HIDE_COMPOUND_REFERENCE tag is set to NO (default) then doxygen will
511425bb815Sopenharmony_ci# append additional text to a page's title, such as Class Reference. If set to
512425bb815Sopenharmony_ci# YES the compound reference will be hidden.
513425bb815Sopenharmony_ci# The default value is: NO.
514425bb815Sopenharmony_ci
515425bb815Sopenharmony_ci# HIDE_COMPOUND_REFERENCE= NO
516425bb815Sopenharmony_ci
517425bb815Sopenharmony_ci# If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of
518425bb815Sopenharmony_ci# the files that are included by a file in the documentation of that file.
519425bb815Sopenharmony_ci# The default value is: YES.
520425bb815Sopenharmony_ci
521425bb815Sopenharmony_ciSHOW_INCLUDE_FILES     = YES
522425bb815Sopenharmony_ci
523425bb815Sopenharmony_ci# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each
524425bb815Sopenharmony_ci# grouped member an include statement to the documentation, telling the reader
525425bb815Sopenharmony_ci# which file to include in order to use the member.
526425bb815Sopenharmony_ci# The default value is: NO.
527425bb815Sopenharmony_ci
528425bb815Sopenharmony_ciSHOW_GROUPED_MEMB_INC  = NO
529425bb815Sopenharmony_ci
530425bb815Sopenharmony_ci# If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include
531425bb815Sopenharmony_ci# files with double quotes in the documentation rather than with sharp brackets.
532425bb815Sopenharmony_ci# The default value is: NO.
533425bb815Sopenharmony_ci
534425bb815Sopenharmony_ciFORCE_LOCAL_INCLUDES   = NO
535425bb815Sopenharmony_ci
536425bb815Sopenharmony_ci# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the
537425bb815Sopenharmony_ci# documentation for inline members.
538425bb815Sopenharmony_ci# The default value is: YES.
539425bb815Sopenharmony_ci
540425bb815Sopenharmony_ciINLINE_INFO            = YES
541425bb815Sopenharmony_ci
542425bb815Sopenharmony_ci# If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the
543425bb815Sopenharmony_ci# (detailed) documentation of file and class members alphabetically by member
544425bb815Sopenharmony_ci# name. If set to NO, the members will appear in declaration order.
545425bb815Sopenharmony_ci# The default value is: YES.
546425bb815Sopenharmony_ci
547425bb815Sopenharmony_ciSORT_MEMBER_DOCS       = YES
548425bb815Sopenharmony_ci
549425bb815Sopenharmony_ci# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief
550425bb815Sopenharmony_ci# descriptions of file, namespace and class members alphabetically by member
551425bb815Sopenharmony_ci# name. If set to NO, the members will appear in declaration order. Note that
552425bb815Sopenharmony_ci# this will also influence the order of the classes in the class list.
553425bb815Sopenharmony_ci# The default value is: NO.
554425bb815Sopenharmony_ci
555425bb815Sopenharmony_ciSORT_BRIEF_DOCS        = YES
556425bb815Sopenharmony_ci
557425bb815Sopenharmony_ci# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the
558425bb815Sopenharmony_ci# (brief and detailed) documentation of class members so that constructors and
559425bb815Sopenharmony_ci# destructors are listed first. If set to NO the constructors will appear in the
560425bb815Sopenharmony_ci# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS.
561425bb815Sopenharmony_ci# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief
562425bb815Sopenharmony_ci# member documentation.
563425bb815Sopenharmony_ci# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting
564425bb815Sopenharmony_ci# detailed member documentation.
565425bb815Sopenharmony_ci# The default value is: NO.
566425bb815Sopenharmony_ci
567425bb815Sopenharmony_ciSORT_MEMBERS_CTORS_1ST = NO
568425bb815Sopenharmony_ci
569425bb815Sopenharmony_ci# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy
570425bb815Sopenharmony_ci# of group names into alphabetical order. If set to NO the group names will
571425bb815Sopenharmony_ci# appear in their defined order.
572425bb815Sopenharmony_ci# The default value is: NO.
573425bb815Sopenharmony_ci
574425bb815Sopenharmony_ciSORT_GROUP_NAMES       = NO
575425bb815Sopenharmony_ci
576425bb815Sopenharmony_ci# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by
577425bb815Sopenharmony_ci# fully-qualified names, including namespaces. If set to NO, the class list will
578425bb815Sopenharmony_ci# be sorted only by class name, not including the namespace part.
579425bb815Sopenharmony_ci# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES.
580425bb815Sopenharmony_ci# Note: This option applies only to the class list, not to the alphabetical
581425bb815Sopenharmony_ci# list.
582425bb815Sopenharmony_ci# The default value is: NO.
583425bb815Sopenharmony_ci
584425bb815Sopenharmony_ciSORT_BY_SCOPE_NAME     = NO
585425bb815Sopenharmony_ci
586425bb815Sopenharmony_ci# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper
587425bb815Sopenharmony_ci# type resolution of all parameters of a function it will reject a match between
588425bb815Sopenharmony_ci# the prototype and the implementation of a member function even if there is
589425bb815Sopenharmony_ci# only one candidate or it is obvious which candidate to choose by doing a
590425bb815Sopenharmony_ci# simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still
591425bb815Sopenharmony_ci# accept a match between prototype and implementation in such cases.
592425bb815Sopenharmony_ci# The default value is: NO.
593425bb815Sopenharmony_ci
594425bb815Sopenharmony_ciSTRICT_PROTO_MATCHING  = NO
595425bb815Sopenharmony_ci
596425bb815Sopenharmony_ci# The GENERATE_TODOLIST tag can be used to enable (YES) or disable (NO) the todo
597425bb815Sopenharmony_ci# list. This list is created by putting \todo commands in the documentation.
598425bb815Sopenharmony_ci# The default value is: YES.
599425bb815Sopenharmony_ci
600425bb815Sopenharmony_ciGENERATE_TODOLIST      = YES
601425bb815Sopenharmony_ci
602425bb815Sopenharmony_ci# The GENERATE_TESTLIST tag can be used to enable (YES) or disable (NO) the test
603425bb815Sopenharmony_ci# list. This list is created by putting \test commands in the documentation.
604425bb815Sopenharmony_ci# The default value is: YES.
605425bb815Sopenharmony_ci
606425bb815Sopenharmony_ciGENERATE_TESTLIST      = YES
607425bb815Sopenharmony_ci
608425bb815Sopenharmony_ci# The GENERATE_BUGLIST tag can be used to enable (YES) or disable (NO) the bug
609425bb815Sopenharmony_ci# list. This list is created by putting \bug commands in the documentation.
610425bb815Sopenharmony_ci# The default value is: YES.
611425bb815Sopenharmony_ci
612425bb815Sopenharmony_ciGENERATE_BUGLIST       = YES
613425bb815Sopenharmony_ci
614425bb815Sopenharmony_ci# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or disable (NO)
615425bb815Sopenharmony_ci# the deprecated list. This list is created by putting \deprecated commands in
616425bb815Sopenharmony_ci# the documentation.
617425bb815Sopenharmony_ci# The default value is: YES.
618425bb815Sopenharmony_ci
619425bb815Sopenharmony_ciGENERATE_DEPRECATEDLIST= YES
620425bb815Sopenharmony_ci
621425bb815Sopenharmony_ci# The ENABLED_SECTIONS tag can be used to enable conditional documentation
622425bb815Sopenharmony_ci# sections, marked by \if <section_label> ... \endif and \cond <section_label>
623425bb815Sopenharmony_ci# ... \endcond blocks.
624425bb815Sopenharmony_ci
625425bb815Sopenharmony_ciENABLED_SECTIONS       =
626425bb815Sopenharmony_ci
627425bb815Sopenharmony_ci# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the
628425bb815Sopenharmony_ci# initial value of a variable or macro / define can have for it to appear in the
629425bb815Sopenharmony_ci# documentation. If the initializer consists of more lines than specified here
630425bb815Sopenharmony_ci# it will be hidden. Use a value of 0 to hide initializers completely. The
631425bb815Sopenharmony_ci# appearance of the value of individual variables and macros / defines can be
632425bb815Sopenharmony_ci# controlled using \showinitializer or \hideinitializer command in the
633425bb815Sopenharmony_ci# documentation regardless of this setting.
634425bb815Sopenharmony_ci# Minimum value: 0, maximum value: 10000, default value: 30.
635425bb815Sopenharmony_ci
636425bb815Sopenharmony_ciMAX_INITIALIZER_LINES  = 30
637425bb815Sopenharmony_ci
638425bb815Sopenharmony_ci# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at
639425bb815Sopenharmony_ci# the bottom of the documentation of classes and structs. If set to YES, the
640425bb815Sopenharmony_ci# list will mention the files that were used to generate the documentation.
641425bb815Sopenharmony_ci# The default value is: YES.
642425bb815Sopenharmony_ci
643425bb815Sopenharmony_ciSHOW_USED_FILES        = YES
644425bb815Sopenharmony_ci
645425bb815Sopenharmony_ci# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This
646425bb815Sopenharmony_ci# will remove the Files entry from the Quick Index and from the Folder Tree View
647425bb815Sopenharmony_ci# (if specified).
648425bb815Sopenharmony_ci# The default value is: YES.
649425bb815Sopenharmony_ci
650425bb815Sopenharmony_ciSHOW_FILES             = YES
651425bb815Sopenharmony_ci
652425bb815Sopenharmony_ci# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces
653425bb815Sopenharmony_ci# page. This will remove the Namespaces entry from the Quick Index and from the
654425bb815Sopenharmony_ci# Folder Tree View (if specified).
655425bb815Sopenharmony_ci# The default value is: YES.
656425bb815Sopenharmony_ci
657425bb815Sopenharmony_ciSHOW_NAMESPACES        = YES
658425bb815Sopenharmony_ci
659425bb815Sopenharmony_ci# The FILE_VERSION_FILTER tag can be used to specify a program or script that
660425bb815Sopenharmony_ci# doxygen should invoke to get the current version for each file (typically from
661425bb815Sopenharmony_ci# the version control system). Doxygen will invoke the program by executing (via
662425bb815Sopenharmony_ci# popen()) the command command input-file, where command is the value of the
663425bb815Sopenharmony_ci# FILE_VERSION_FILTER tag, and input-file is the name of an input file provided
664425bb815Sopenharmony_ci# by doxygen. Whatever the program writes to standard output is used as the file
665425bb815Sopenharmony_ci# version. For an example see the documentation.
666425bb815Sopenharmony_ci
667425bb815Sopenharmony_ciFILE_VERSION_FILTER    =
668425bb815Sopenharmony_ci
669425bb815Sopenharmony_ci# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed
670425bb815Sopenharmony_ci# by doxygen. The layout file controls the global structure of the generated
671425bb815Sopenharmony_ci# output files in an output format independent way. To create the layout file
672425bb815Sopenharmony_ci# that represents doxygen's defaults, run doxygen with the -l option. You can
673425bb815Sopenharmony_ci# optionally specify a file name after the option, if omitted DoxygenLayout.xml
674425bb815Sopenharmony_ci# will be used as the name of the layout file.
675425bb815Sopenharmony_ci#
676425bb815Sopenharmony_ci# Note that if you run doxygen from a directory containing a file called
677425bb815Sopenharmony_ci# DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE
678425bb815Sopenharmony_ci# tag is left empty.
679425bb815Sopenharmony_ci
680425bb815Sopenharmony_ciLAYOUT_FILE            =
681425bb815Sopenharmony_ci
682425bb815Sopenharmony_ci# The CITE_BIB_FILES tag can be used to specify one or more bib files containing
683425bb815Sopenharmony_ci# the reference definitions. This must be a list of .bib files. The .bib
684425bb815Sopenharmony_ci# extension is automatically appended if omitted. This requires the bibtex tool
685425bb815Sopenharmony_ci# to be installed. See also http://en.wikipedia.org/wiki/BibTeX for more info.
686425bb815Sopenharmony_ci# For LaTeX the style of the bibliography can be controlled using
687425bb815Sopenharmony_ci# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the
688425bb815Sopenharmony_ci# search path. See also \cite for info how to create references.
689425bb815Sopenharmony_ci
690425bb815Sopenharmony_ciCITE_BIB_FILES         =
691425bb815Sopenharmony_ci
692425bb815Sopenharmony_ci#---------------------------------------------------------------------------
693425bb815Sopenharmony_ci# Configuration options related to warning and progress messages
694425bb815Sopenharmony_ci#---------------------------------------------------------------------------
695425bb815Sopenharmony_ci
696425bb815Sopenharmony_ci# The QUIET tag can be used to turn on/off the messages that are generated to
697425bb815Sopenharmony_ci# standard output by doxygen. If QUIET is set to YES this implies that the
698425bb815Sopenharmony_ci# messages are off.
699425bb815Sopenharmony_ci# The default value is: NO.
700425bb815Sopenharmony_ci
701425bb815Sopenharmony_ciQUIET                  = NO
702425bb815Sopenharmony_ci
703425bb815Sopenharmony_ci# The WARNINGS tag can be used to turn on/off the warning messages that are
704425bb815Sopenharmony_ci# generated to standard error (stderr) by doxygen. If WARNINGS is set to YES
705425bb815Sopenharmony_ci# this implies that the warnings are on.
706425bb815Sopenharmony_ci#
707425bb815Sopenharmony_ci# Tip: Turn warnings on while writing the documentation.
708425bb815Sopenharmony_ci# The default value is: YES.
709425bb815Sopenharmony_ci
710425bb815Sopenharmony_ciWARNINGS               = YES
711425bb815Sopenharmony_ci
712425bb815Sopenharmony_ci# If the WARN_IF_UNDOCUMENTED tag is set to YES then doxygen will generate
713425bb815Sopenharmony_ci# warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag
714425bb815Sopenharmony_ci# will automatically be disabled.
715425bb815Sopenharmony_ci# The default value is: YES.
716425bb815Sopenharmony_ci
717425bb815Sopenharmony_ciWARN_IF_UNDOCUMENTED   = YES
718425bb815Sopenharmony_ci
719425bb815Sopenharmony_ci# If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for
720425bb815Sopenharmony_ci# potential errors in the documentation, such as not documenting some parameters
721425bb815Sopenharmony_ci# in a documented function, or documenting parameters that don't exist or using
722425bb815Sopenharmony_ci# markup commands wrongly.
723425bb815Sopenharmony_ci# The default value is: YES.
724425bb815Sopenharmony_ci
725425bb815Sopenharmony_ciWARN_IF_DOC_ERROR      = YES
726425bb815Sopenharmony_ci
727425bb815Sopenharmony_ci# This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that
728425bb815Sopenharmony_ci# are documented, but have no documentation for their parameters or return
729425bb815Sopenharmony_ci# value. If set to NO, doxygen will only warn about wrong or incomplete
730425bb815Sopenharmony_ci# parameter documentation, but not about the absence of documentation.
731425bb815Sopenharmony_ci# The default value is: NO.
732425bb815Sopenharmony_ci
733425bb815Sopenharmony_ciWARN_NO_PARAMDOC       = YES
734425bb815Sopenharmony_ci
735425bb815Sopenharmony_ci# The WARN_FORMAT tag determines the format of the warning messages that doxygen
736425bb815Sopenharmony_ci# can produce. The string should contain the $file, $line, and $text tags, which
737425bb815Sopenharmony_ci# will be replaced by the file and line number from which the warning originated
738425bb815Sopenharmony_ci# and the warning text. Optionally the format may contain $version, which will
739425bb815Sopenharmony_ci# be replaced by the version of the file (if it could be obtained via
740425bb815Sopenharmony_ci# FILE_VERSION_FILTER)
741425bb815Sopenharmony_ci# The default value is: $file:$line: $text.
742425bb815Sopenharmony_ci
743425bb815Sopenharmony_ciWARN_FORMAT            = "$file:$line: $text"
744425bb815Sopenharmony_ci
745425bb815Sopenharmony_ci# The WARN_LOGFILE tag can be used to specify a file to which warning and error
746425bb815Sopenharmony_ci# messages should be written. If left blank the output is written to standard
747425bb815Sopenharmony_ci# error (stderr).
748425bb815Sopenharmony_ci
749425bb815Sopenharmony_ciWARN_LOGFILE           =
750425bb815Sopenharmony_ci
751425bb815Sopenharmony_ci#---------------------------------------------------------------------------
752425bb815Sopenharmony_ci# Configuration options related to the input files
753425bb815Sopenharmony_ci#---------------------------------------------------------------------------
754425bb815Sopenharmony_ci
755425bb815Sopenharmony_ci# The INPUT tag is used to specify the files and/or directories that contain
756425bb815Sopenharmony_ci# documented source files. You may enter file names like myfile.cpp or
757425bb815Sopenharmony_ci# directories like /usr/src/myproject. Separate the files or directories with
758425bb815Sopenharmony_ci# spaces.
759425bb815Sopenharmony_ci# Note: If this tag is empty the current directory is searched.
760425bb815Sopenharmony_ci
761425bb815Sopenharmony_ciINPUT                  = jerry-core jerry-ext jerry-port
762425bb815Sopenharmony_ci
763425bb815Sopenharmony_ci# This tag can be used to specify the character encoding of the source files
764425bb815Sopenharmony_ci# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses
765425bb815Sopenharmony_ci# libiconv (or the iconv built into libc) for the transcoding. See the libiconv
766425bb815Sopenharmony_ci# documentation (see: http://www.gnu.org/software/libiconv) for the list of
767425bb815Sopenharmony_ci# possible encodings.
768425bb815Sopenharmony_ci# The default value is: UTF-8.
769425bb815Sopenharmony_ci
770425bb815Sopenharmony_ciINPUT_ENCODING         = UTF-8
771425bb815Sopenharmony_ci
772425bb815Sopenharmony_ci# If the value of the INPUT tag contains directories, you can use the
773425bb815Sopenharmony_ci# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and
774425bb815Sopenharmony_ci# *.h) to filter out the source-files in the directories. If left blank the
775425bb815Sopenharmony_ci# following patterns are tested:*.c, *.cc, *.cxx, *.cpp, *.c++, *.java, *.ii,
776425bb815Sopenharmony_ci# *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, *.hh, *.hxx, *.hpp,
777425bb815Sopenharmony_ci# *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, *.m, *.markdown,
778425bb815Sopenharmony_ci# *.md, *.mm, *.dox, *.py, *.f90, *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf,
779425bb815Sopenharmony_ci# *.qsf, *.as and *.js.
780425bb815Sopenharmony_ci
781425bb815Sopenharmony_ciFILE_PATTERNS          = *.h *.c
782425bb815Sopenharmony_ci
783425bb815Sopenharmony_ci# The RECURSIVE tag can be used to specify whether or not subdirectories should
784425bb815Sopenharmony_ci# be searched for input files as well.
785425bb815Sopenharmony_ci# The default value is: NO.
786425bb815Sopenharmony_ci
787425bb815Sopenharmony_ciRECURSIVE              = YES
788425bb815Sopenharmony_ci
789425bb815Sopenharmony_ci# The EXCLUDE tag can be used to specify files and/or directories that should be
790425bb815Sopenharmony_ci# excluded from the INPUT source files. This way you can easily exclude a
791425bb815Sopenharmony_ci# subdirectory from a directory tree whose root is specified with the INPUT tag.
792425bb815Sopenharmony_ci#
793425bb815Sopenharmony_ci# Note that relative paths are relative to the directory from which doxygen is
794425bb815Sopenharmony_ci# run.
795425bb815Sopenharmony_ci
796425bb815Sopenharmony_ci# FIXME: None of these files are excluded light-heartedly. They should be
797425bb815Sopenharmony_ci# removed one-by-one and warnings reported by doxygen should be fixed by those
798425bb815Sopenharmony_ci# who are familiar with the undocumented parts.
799425bb815Sopenharmony_ciEXCLUDE                = \
800425bb815Sopenharmony_ci        jerry-core/ecma/base/ecma-globals.h \
801425bb815Sopenharmony_ci        jerry-core/ecma/operations/ecma-exceptions.h \
802425bb815Sopenharmony_ci        jerry-core/include/jerryscript-debugger-transport.h \
803425bb815Sopenharmony_ci        jerry-core/jcontext/jcontext.h \
804425bb815Sopenharmony_ci        jerry-core/parser/js/byte-code.h \
805425bb815Sopenharmony_ci        jerry-core/parser/js/common.h \
806425bb815Sopenharmony_ci        jerry-core/parser/js/js-lexer.h \
807425bb815Sopenharmony_ci        jerry-core/parser/js/js-parser-internal.h \
808425bb815Sopenharmony_ci        jerry-core/parser/regexp/re-parser.h \
809425bb815Sopenharmony_ci        jerry-core/vm/vm-stack.h
810425bb815Sopenharmony_ci
811425bb815Sopenharmony_ci# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or
812425bb815Sopenharmony_ci# directories that are symbolic links (a Unix file system feature) are excluded
813425bb815Sopenharmony_ci# from the input.
814425bb815Sopenharmony_ci# The default value is: NO.
815425bb815Sopenharmony_ci
816425bb815Sopenharmony_ciEXCLUDE_SYMLINKS       = NO
817425bb815Sopenharmony_ci
818425bb815Sopenharmony_ci# If the value of the INPUT tag contains directories, you can use the
819425bb815Sopenharmony_ci# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude
820425bb815Sopenharmony_ci# certain files from those directories.
821425bb815Sopenharmony_ci#
822425bb815Sopenharmony_ci# Note that the wildcards are matched against the file with absolute path, so to
823425bb815Sopenharmony_ci# exclude all test directories for example use the pattern */test/*
824425bb815Sopenharmony_ci
825425bb815Sopenharmony_ciEXCLUDE_PATTERNS       = *.inc.h
826425bb815Sopenharmony_ci
827425bb815Sopenharmony_ci# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
828425bb815Sopenharmony_ci# (namespaces, classes, functions, etc.) that should be excluded from the
829425bb815Sopenharmony_ci# output. The symbol name can be a fully qualified name, a word, or if the
830425bb815Sopenharmony_ci# wildcard * is used, a substring. Examples: ANamespace, AClass,
831425bb815Sopenharmony_ci# AClass::ANamespace, ANamespace::*Test
832425bb815Sopenharmony_ci#
833425bb815Sopenharmony_ci# Note that the wildcards are matched against the file with absolute path, so to
834425bb815Sopenharmony_ci# exclude all test directories use the pattern */test/*
835425bb815Sopenharmony_ci
836425bb815Sopenharmony_ciEXCLUDE_SYMBOLS        =
837425bb815Sopenharmony_ci
838425bb815Sopenharmony_ci# The EXAMPLE_PATH tag can be used to specify one or more files or directories
839425bb815Sopenharmony_ci# that contain example code fragments that are included (see the \include
840425bb815Sopenharmony_ci# command).
841425bb815Sopenharmony_ci
842425bb815Sopenharmony_ciEXAMPLE_PATH           =
843425bb815Sopenharmony_ci
844425bb815Sopenharmony_ci# If the value of the EXAMPLE_PATH tag contains directories, you can use the
845425bb815Sopenharmony_ci# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and
846425bb815Sopenharmony_ci# *.h) to filter out the source-files in the directories. If left blank all
847425bb815Sopenharmony_ci# files are included.
848425bb815Sopenharmony_ci
849425bb815Sopenharmony_ciEXAMPLE_PATTERNS       =
850425bb815Sopenharmony_ci
851425bb815Sopenharmony_ci# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be
852425bb815Sopenharmony_ci# searched for input files to be used with the \include or \dontinclude commands
853425bb815Sopenharmony_ci# irrespective of the value of the RECURSIVE tag.
854425bb815Sopenharmony_ci# The default value is: NO.
855425bb815Sopenharmony_ci
856425bb815Sopenharmony_ciEXAMPLE_RECURSIVE      = NO
857425bb815Sopenharmony_ci
858425bb815Sopenharmony_ci# The IMAGE_PATH tag can be used to specify one or more files or directories
859425bb815Sopenharmony_ci# that contain images that are to be included in the documentation (see the
860425bb815Sopenharmony_ci# \image command).
861425bb815Sopenharmony_ci
862425bb815Sopenharmony_ciIMAGE_PATH             =
863425bb815Sopenharmony_ci
864425bb815Sopenharmony_ci# The INPUT_FILTER tag can be used to specify a program that doxygen should
865425bb815Sopenharmony_ci# invoke to filter for each input file. Doxygen will invoke the filter program
866425bb815Sopenharmony_ci# by executing (via popen()) the command:
867425bb815Sopenharmony_ci#
868425bb815Sopenharmony_ci# <filter> <input-file>
869425bb815Sopenharmony_ci#
870425bb815Sopenharmony_ci# where <filter> is the value of the INPUT_FILTER tag, and <input-file> is the
871425bb815Sopenharmony_ci# name of an input file. Doxygen will then use the output that the filter
872425bb815Sopenharmony_ci# program writes to standard output. If FILTER_PATTERNS is specified, this tag
873425bb815Sopenharmony_ci# will be ignored.
874425bb815Sopenharmony_ci#
875425bb815Sopenharmony_ci# Note that the filter must not add or remove lines; it is applied before the
876425bb815Sopenharmony_ci# code is scanned, but not when the output code is generated. If lines are added
877425bb815Sopenharmony_ci# or removed, the anchors will not be placed correctly.
878425bb815Sopenharmony_ci
879425bb815Sopenharmony_ciINPUT_FILTER           =
880425bb815Sopenharmony_ci
881425bb815Sopenharmony_ci# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern
882425bb815Sopenharmony_ci# basis. Doxygen will compare the file name with each pattern and apply the
883425bb815Sopenharmony_ci# filter if there is a match. The filters are a list of the form: pattern=filter
884425bb815Sopenharmony_ci# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how
885425bb815Sopenharmony_ci# filters are used. If the FILTER_PATTERNS tag is empty or if none of the
886425bb815Sopenharmony_ci# patterns match the file name, INPUT_FILTER is applied.
887425bb815Sopenharmony_ci
888425bb815Sopenharmony_ciFILTER_PATTERNS        =
889425bb815Sopenharmony_ci
890425bb815Sopenharmony_ci# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using
891425bb815Sopenharmony_ci# INPUT_FILTER) will also be used to filter the input files that are used for
892425bb815Sopenharmony_ci# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES).
893425bb815Sopenharmony_ci# The default value is: NO.
894425bb815Sopenharmony_ci
895425bb815Sopenharmony_ciFILTER_SOURCE_FILES    = NO
896425bb815Sopenharmony_ci
897425bb815Sopenharmony_ci# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file
898425bb815Sopenharmony_ci# pattern. A pattern will override the setting for FILTER_PATTERN (if any) and
899425bb815Sopenharmony_ci# it is also possible to disable source filtering for a specific pattern using
900425bb815Sopenharmony_ci# *.ext= (so without naming a filter).
901425bb815Sopenharmony_ci# This tag requires that the tag FILTER_SOURCE_FILES is set to YES.
902425bb815Sopenharmony_ci
903425bb815Sopenharmony_ciFILTER_SOURCE_PATTERNS =
904425bb815Sopenharmony_ci
905425bb815Sopenharmony_ci# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that
906425bb815Sopenharmony_ci# is part of the input, its contents will be placed on the main page
907425bb815Sopenharmony_ci# (index.html). This can be useful if you have a project on for instance GitHub
908425bb815Sopenharmony_ci# and want to reuse the introduction page also for the doxygen output.
909425bb815Sopenharmony_ci
910425bb815Sopenharmony_ciUSE_MDFILE_AS_MAINPAGE =
911425bb815Sopenharmony_ci
912425bb815Sopenharmony_ci#---------------------------------------------------------------------------
913425bb815Sopenharmony_ci# Configuration options related to source browsing
914425bb815Sopenharmony_ci#---------------------------------------------------------------------------
915425bb815Sopenharmony_ci
916425bb815Sopenharmony_ci# If the SOURCE_BROWSER tag is set to YES then a list of source files will be
917425bb815Sopenharmony_ci# generated. Documented entities will be cross-referenced with these sources.
918425bb815Sopenharmony_ci#
919425bb815Sopenharmony_ci# Note: To get rid of all source code in the generated output, make sure that
920425bb815Sopenharmony_ci# also VERBATIM_HEADERS is set to NO.
921425bb815Sopenharmony_ci# The default value is: NO.
922425bb815Sopenharmony_ci
923425bb815Sopenharmony_ciSOURCE_BROWSER         = YES
924425bb815Sopenharmony_ci
925425bb815Sopenharmony_ci# Setting the INLINE_SOURCES tag to YES will include the body of functions,
926425bb815Sopenharmony_ci# classes and enums directly into the documentation.
927425bb815Sopenharmony_ci# The default value is: NO.
928425bb815Sopenharmony_ci
929425bb815Sopenharmony_ciINLINE_SOURCES         = NO
930425bb815Sopenharmony_ci
931425bb815Sopenharmony_ci# Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any
932425bb815Sopenharmony_ci# special comment blocks from generated source code fragments. Normal C, C++ and
933425bb815Sopenharmony_ci# Fortran comments will always remain visible.
934425bb815Sopenharmony_ci# The default value is: YES.
935425bb815Sopenharmony_ci
936425bb815Sopenharmony_ciSTRIP_CODE_COMMENTS    = YES
937425bb815Sopenharmony_ci
938425bb815Sopenharmony_ci# If the REFERENCED_BY_RELATION tag is set to YES then for each documented
939425bb815Sopenharmony_ci# function all documented functions referencing it will be listed.
940425bb815Sopenharmony_ci# The default value is: NO.
941425bb815Sopenharmony_ci
942425bb815Sopenharmony_ciREFERENCED_BY_RELATION = NO
943425bb815Sopenharmony_ci
944425bb815Sopenharmony_ci# If the REFERENCES_RELATION tag is set to YES then for each documented function
945425bb815Sopenharmony_ci# all documented entities called/used by that function will be listed.
946425bb815Sopenharmony_ci# The default value is: NO.
947425bb815Sopenharmony_ci
948425bb815Sopenharmony_ciREFERENCES_RELATION    = NO
949425bb815Sopenharmony_ci
950425bb815Sopenharmony_ci# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set
951425bb815Sopenharmony_ci# to YES then the hyperlinks from functions in REFERENCES_RELATION and
952425bb815Sopenharmony_ci# REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will
953425bb815Sopenharmony_ci# link to the documentation.
954425bb815Sopenharmony_ci# The default value is: YES.
955425bb815Sopenharmony_ci
956425bb815Sopenharmony_ciREFERENCES_LINK_SOURCE = YES
957425bb815Sopenharmony_ci
958425bb815Sopenharmony_ci# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the
959425bb815Sopenharmony_ci# source code will show a tooltip with additional information such as prototype,
960425bb815Sopenharmony_ci# brief description and links to the definition and documentation. Since this
961425bb815Sopenharmony_ci# will make the HTML file larger and loading of large files a bit slower, you
962425bb815Sopenharmony_ci# can opt to disable this feature.
963425bb815Sopenharmony_ci# The default value is: YES.
964425bb815Sopenharmony_ci# This tag requires that the tag SOURCE_BROWSER is set to YES.
965425bb815Sopenharmony_ci
966425bb815Sopenharmony_ciSOURCE_TOOLTIPS        = YES
967425bb815Sopenharmony_ci
968425bb815Sopenharmony_ci# If the USE_HTAGS tag is set to YES then the references to source code will
969425bb815Sopenharmony_ci# point to the HTML generated by the htags(1) tool instead of doxygen built-in
970425bb815Sopenharmony_ci# source browser. The htags tool is part of GNU's global source tagging system
971425bb815Sopenharmony_ci# (see http://www.gnu.org/software/global/global.html). You will need version
972425bb815Sopenharmony_ci# 4.8.6 or higher.
973425bb815Sopenharmony_ci#
974425bb815Sopenharmony_ci# To use it do the following:
975425bb815Sopenharmony_ci# - Install the latest version of global
976425bb815Sopenharmony_ci# - Enable SOURCE_BROWSER and USE_HTAGS in the config file
977425bb815Sopenharmony_ci# - Make sure the INPUT points to the root of the source tree
978425bb815Sopenharmony_ci# - Run doxygen as normal
979425bb815Sopenharmony_ci#
980425bb815Sopenharmony_ci# Doxygen will invoke htags (and that will in turn invoke gtags), so these
981425bb815Sopenharmony_ci# tools must be available from the command line (i.e. in the search path).
982425bb815Sopenharmony_ci#
983425bb815Sopenharmony_ci# The result: instead of the source browser generated by doxygen, the links to
984425bb815Sopenharmony_ci# source code will now point to the output of htags.
985425bb815Sopenharmony_ci# The default value is: NO.
986425bb815Sopenharmony_ci# This tag requires that the tag SOURCE_BROWSER is set to YES.
987425bb815Sopenharmony_ci
988425bb815Sopenharmony_ciUSE_HTAGS              = NO
989425bb815Sopenharmony_ci
990425bb815Sopenharmony_ci# If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a
991425bb815Sopenharmony_ci# verbatim copy of the header file for each class for which an include is
992425bb815Sopenharmony_ci# specified. Set to NO to disable this.
993425bb815Sopenharmony_ci# See also: Section \class.
994425bb815Sopenharmony_ci# The default value is: YES.
995425bb815Sopenharmony_ci
996425bb815Sopenharmony_ciVERBATIM_HEADERS       = YES
997425bb815Sopenharmony_ci
998425bb815Sopenharmony_ci# If the CLANG_ASSISTED_PARSING tag is set to YES then doxygen will use the
999425bb815Sopenharmony_ci# clang parser (see: http://clang.llvm.org/) for more accurate parsing at the
1000425bb815Sopenharmony_ci# cost of reduced performance. This can be particularly helpful with template
1001425bb815Sopenharmony_ci# rich C++ code for which doxygen's built-in parser lacks the necessary type
1002425bb815Sopenharmony_ci# information.
1003425bb815Sopenharmony_ci# Note: The availability of this option depends on whether or not doxygen was
1004425bb815Sopenharmony_ci# compiled with the --with-libclang option.
1005425bb815Sopenharmony_ci# The default value is: NO.
1006425bb815Sopenharmony_ci
1007425bb815Sopenharmony_ci# CLANG_ASSISTED_PARSING = NO
1008425bb815Sopenharmony_ci
1009425bb815Sopenharmony_ci# If clang assisted parsing is enabled you can provide the compiler with command
1010425bb815Sopenharmony_ci# line options that you would normally use when invoking the compiler. Note that
1011425bb815Sopenharmony_ci# the include paths will already be set by doxygen for the files and directories
1012425bb815Sopenharmony_ci# specified with INPUT and INCLUDE_PATH.
1013425bb815Sopenharmony_ci# This tag requires that the tag CLANG_ASSISTED_PARSING is set to YES.
1014425bb815Sopenharmony_ci
1015425bb815Sopenharmony_ci# CLANG_OPTIONS          =
1016425bb815Sopenharmony_ci
1017425bb815Sopenharmony_ci#---------------------------------------------------------------------------
1018425bb815Sopenharmony_ci# Configuration options related to the alphabetical class index
1019425bb815Sopenharmony_ci#---------------------------------------------------------------------------
1020425bb815Sopenharmony_ci
1021425bb815Sopenharmony_ci# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all
1022425bb815Sopenharmony_ci# compounds will be generated. Enable this if the project contains a lot of
1023425bb815Sopenharmony_ci# classes, structs, unions or interfaces.
1024425bb815Sopenharmony_ci# The default value is: YES.
1025425bb815Sopenharmony_ci
1026425bb815Sopenharmony_ciALPHABETICAL_INDEX     = YES
1027425bb815Sopenharmony_ci
1028425bb815Sopenharmony_ci# The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in
1029425bb815Sopenharmony_ci# which the alphabetical index list will be split.
1030425bb815Sopenharmony_ci# Minimum value: 1, maximum value: 20, default value: 5.
1031425bb815Sopenharmony_ci# This tag requires that the tag ALPHABETICAL_INDEX is set to YES.
1032425bb815Sopenharmony_ci
1033425bb815Sopenharmony_ciCOLS_IN_ALPHA_INDEX    = 5
1034425bb815Sopenharmony_ci
1035425bb815Sopenharmony_ci# In case all classes in a project start with a common prefix, all classes will
1036425bb815Sopenharmony_ci# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag
1037425bb815Sopenharmony_ci# can be used to specify a prefix (or a list of prefixes) that should be ignored
1038425bb815Sopenharmony_ci# while generating the index headers.
1039425bb815Sopenharmony_ci# This tag requires that the tag ALPHABETICAL_INDEX is set to YES.
1040425bb815Sopenharmony_ci
1041425bb815Sopenharmony_ciIGNORE_PREFIX          =
1042425bb815Sopenharmony_ci
1043425bb815Sopenharmony_ci#---------------------------------------------------------------------------
1044425bb815Sopenharmony_ci# Configuration options related to the HTML output
1045425bb815Sopenharmony_ci#---------------------------------------------------------------------------
1046425bb815Sopenharmony_ci
1047425bb815Sopenharmony_ci# If the GENERATE_HTML tag is set to YES, doxygen will generate HTML output
1048425bb815Sopenharmony_ci# The default value is: YES.
1049425bb815Sopenharmony_ci
1050425bb815Sopenharmony_ciGENERATE_HTML          = YES
1051425bb815Sopenharmony_ci
1052425bb815Sopenharmony_ci# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a
1053425bb815Sopenharmony_ci# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
1054425bb815Sopenharmony_ci# it.
1055425bb815Sopenharmony_ci# The default directory is: html.
1056425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_HTML is set to YES.
1057425bb815Sopenharmony_ci
1058425bb815Sopenharmony_ciHTML_OUTPUT            = html
1059425bb815Sopenharmony_ci
1060425bb815Sopenharmony_ci# The HTML_FILE_EXTENSION tag can be used to specify the file extension for each
1061425bb815Sopenharmony_ci# generated HTML page (for example: .htm, .php, .asp).
1062425bb815Sopenharmony_ci# The default value is: .html.
1063425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_HTML is set to YES.
1064425bb815Sopenharmony_ci
1065425bb815Sopenharmony_ciHTML_FILE_EXTENSION    = .html
1066425bb815Sopenharmony_ci
1067425bb815Sopenharmony_ci# The HTML_HEADER tag can be used to specify a user-defined HTML header file for
1068425bb815Sopenharmony_ci# each generated HTML page. If the tag is left blank doxygen will generate a
1069425bb815Sopenharmony_ci# standard header.
1070425bb815Sopenharmony_ci#
1071425bb815Sopenharmony_ci# To get valid HTML the header file that includes any scripts and style sheets
1072425bb815Sopenharmony_ci# that doxygen needs, which is dependent on the configuration options used (e.g.
1073425bb815Sopenharmony_ci# the setting GENERATE_TREEVIEW). It is highly recommended to start with a
1074425bb815Sopenharmony_ci# default header using
1075425bb815Sopenharmony_ci# doxygen -w html new_header.html new_footer.html new_stylesheet.css
1076425bb815Sopenharmony_ci# YourConfigFile
1077425bb815Sopenharmony_ci# and then modify the file new_header.html. See also section "Doxygen usage"
1078425bb815Sopenharmony_ci# for information on how to generate the default header that doxygen normally
1079425bb815Sopenharmony_ci# uses.
1080425bb815Sopenharmony_ci# Note: The header is subject to change so you typically have to regenerate the
1081425bb815Sopenharmony_ci# default header when upgrading to a newer version of doxygen. For a description
1082425bb815Sopenharmony_ci# of the possible markers and block names see the documentation.
1083425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_HTML is set to YES.
1084425bb815Sopenharmony_ci
1085425bb815Sopenharmony_ciHTML_HEADER            =
1086425bb815Sopenharmony_ci
1087425bb815Sopenharmony_ci# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each
1088425bb815Sopenharmony_ci# generated HTML page. If the tag is left blank doxygen will generate a standard
1089425bb815Sopenharmony_ci# footer. See HTML_HEADER for more information on how to generate a default
1090425bb815Sopenharmony_ci# footer and what special commands can be used inside the footer. See also
1091425bb815Sopenharmony_ci# section "Doxygen usage" for information on how to generate the default footer
1092425bb815Sopenharmony_ci# that doxygen normally uses.
1093425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_HTML is set to YES.
1094425bb815Sopenharmony_ci
1095425bb815Sopenharmony_ciHTML_FOOTER            =
1096425bb815Sopenharmony_ci
1097425bb815Sopenharmony_ci# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style
1098425bb815Sopenharmony_ci# sheet that is used by each HTML page. It can be used to fine-tune the look of
1099425bb815Sopenharmony_ci# the HTML output. If left blank doxygen will generate a default style sheet.
1100425bb815Sopenharmony_ci# See also section "Doxygen usage" for information on how to generate the style
1101425bb815Sopenharmony_ci# sheet that doxygen normally uses.
1102425bb815Sopenharmony_ci# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as
1103425bb815Sopenharmony_ci# it is more robust and this tag (HTML_STYLESHEET) will in the future become
1104425bb815Sopenharmony_ci# obsolete.
1105425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_HTML is set to YES.
1106425bb815Sopenharmony_ci
1107425bb815Sopenharmony_ciHTML_STYLESHEET        =
1108425bb815Sopenharmony_ci
1109425bb815Sopenharmony_ci# The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined
1110425bb815Sopenharmony_ci# cascading style sheets that are included after the standard style sheets
1111425bb815Sopenharmony_ci# created by doxygen. Using this option one can overrule certain style aspects.
1112425bb815Sopenharmony_ci# This is preferred over using HTML_STYLESHEET since it does not replace the
1113425bb815Sopenharmony_ci# standard style sheet and is therefore more robust against future updates.
1114425bb815Sopenharmony_ci# Doxygen will copy the style sheet files to the output directory.
1115425bb815Sopenharmony_ci# Note: The order of the extra style sheet files is of importance (e.g. the last
1116425bb815Sopenharmony_ci# style sheet in the list overrules the setting of the previous ones in the
1117425bb815Sopenharmony_ci# list). For an example see the documentation.
1118425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_HTML is set to YES.
1119425bb815Sopenharmony_ci
1120425bb815Sopenharmony_ciHTML_EXTRA_STYLESHEET  =
1121425bb815Sopenharmony_ci
1122425bb815Sopenharmony_ci# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or
1123425bb815Sopenharmony_ci# other source files which should be copied to the HTML output directory. Note
1124425bb815Sopenharmony_ci# that these files will be copied to the base HTML output directory. Use the
1125425bb815Sopenharmony_ci# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these
1126425bb815Sopenharmony_ci# files. In the HTML_STYLESHEET file, use the file name only. Also note that the
1127425bb815Sopenharmony_ci# files will be copied as-is; there are no commands or markers available.
1128425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_HTML is set to YES.
1129425bb815Sopenharmony_ci
1130425bb815Sopenharmony_ciHTML_EXTRA_FILES       =
1131425bb815Sopenharmony_ci
1132425bb815Sopenharmony_ci# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen
1133425bb815Sopenharmony_ci# will adjust the colors in the style sheet and background images according to
1134425bb815Sopenharmony_ci# this color. Hue is specified as an angle on a colorwheel, see
1135425bb815Sopenharmony_ci# http://en.wikipedia.org/wiki/Hue for more information. For instance the value
1136425bb815Sopenharmony_ci# 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300
1137425bb815Sopenharmony_ci# purple, and 360 is red again.
1138425bb815Sopenharmony_ci# Minimum value: 0, maximum value: 359, default value: 220.
1139425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_HTML is set to YES.
1140425bb815Sopenharmony_ci
1141425bb815Sopenharmony_ciHTML_COLORSTYLE_HUE    = 220
1142425bb815Sopenharmony_ci
1143425bb815Sopenharmony_ci# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors
1144425bb815Sopenharmony_ci# in the HTML output. For a value of 0 the output will use grayscales only. A
1145425bb815Sopenharmony_ci# value of 255 will produce the most vivid colors.
1146425bb815Sopenharmony_ci# Minimum value: 0, maximum value: 255, default value: 100.
1147425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_HTML is set to YES.
1148425bb815Sopenharmony_ci
1149425bb815Sopenharmony_ciHTML_COLORSTYLE_SAT    = 100
1150425bb815Sopenharmony_ci
1151425bb815Sopenharmony_ci# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the
1152425bb815Sopenharmony_ci# luminance component of the colors in the HTML output. Values below 100
1153425bb815Sopenharmony_ci# gradually make the output lighter, whereas values above 100 make the output
1154425bb815Sopenharmony_ci# darker. The value divided by 100 is the actual gamma applied, so 80 represents
1155425bb815Sopenharmony_ci# a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not
1156425bb815Sopenharmony_ci# change the gamma.
1157425bb815Sopenharmony_ci# Minimum value: 40, maximum value: 240, default value: 80.
1158425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_HTML is set to YES.
1159425bb815Sopenharmony_ci
1160425bb815Sopenharmony_ciHTML_COLORSTYLE_GAMMA  = 80
1161425bb815Sopenharmony_ci
1162425bb815Sopenharmony_ci# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML
1163425bb815Sopenharmony_ci# page will contain the date and time when the page was generated. Setting this
1164425bb815Sopenharmony_ci# to YES can help to show when doxygen was last run and thus if the
1165425bb815Sopenharmony_ci# documentation is up to date.
1166425bb815Sopenharmony_ci# The default value is: NO.
1167425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_HTML is set to YES.
1168425bb815Sopenharmony_ci
1169425bb815Sopenharmony_ciHTML_TIMESTAMP         = NO
1170425bb815Sopenharmony_ci
1171425bb815Sopenharmony_ci# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
1172425bb815Sopenharmony_ci# documentation will contain sections that can be hidden and shown after the
1173425bb815Sopenharmony_ci# page has loaded.
1174425bb815Sopenharmony_ci# The default value is: NO.
1175425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_HTML is set to YES.
1176425bb815Sopenharmony_ci
1177425bb815Sopenharmony_ciHTML_DYNAMIC_SECTIONS  = YES
1178425bb815Sopenharmony_ci
1179425bb815Sopenharmony_ci# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries
1180425bb815Sopenharmony_ci# shown in the various tree structured indices initially; the user can expand
1181425bb815Sopenharmony_ci# and collapse entries dynamically later on. Doxygen will expand the tree to
1182425bb815Sopenharmony_ci# such a level that at most the specified number of entries are visible (unless
1183425bb815Sopenharmony_ci# a fully collapsed tree already exceeds this amount). So setting the number of
1184425bb815Sopenharmony_ci# entries 1 will produce a full collapsed tree by default. 0 is a special value
1185425bb815Sopenharmony_ci# representing an infinite number of entries and will result in a full expanded
1186425bb815Sopenharmony_ci# tree by default.
1187425bb815Sopenharmony_ci# Minimum value: 0, maximum value: 9999, default value: 100.
1188425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_HTML is set to YES.
1189425bb815Sopenharmony_ci
1190425bb815Sopenharmony_ciHTML_INDEX_NUM_ENTRIES = 100
1191425bb815Sopenharmony_ci
1192425bb815Sopenharmony_ci# If the GENERATE_DOCSET tag is set to YES, additional index files will be
1193425bb815Sopenharmony_ci# generated that can be used as input for Apple's Xcode 3 integrated development
1194425bb815Sopenharmony_ci# environment (see: http://developer.apple.com/tools/xcode/), introduced with
1195425bb815Sopenharmony_ci# OSX 10.5 (Leopard). To create a documentation set, doxygen will generate a
1196425bb815Sopenharmony_ci# Makefile in the HTML output directory. Running make will produce the docset in
1197425bb815Sopenharmony_ci# that directory and running make install will install the docset in
1198425bb815Sopenharmony_ci# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at
1199425bb815Sopenharmony_ci# startup. See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html
1200425bb815Sopenharmony_ci# for more information.
1201425bb815Sopenharmony_ci# The default value is: NO.
1202425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_HTML is set to YES.
1203425bb815Sopenharmony_ci
1204425bb815Sopenharmony_ciGENERATE_DOCSET        = NO
1205425bb815Sopenharmony_ci
1206425bb815Sopenharmony_ci# This tag determines the name of the docset feed. A documentation feed provides
1207425bb815Sopenharmony_ci# an umbrella under which multiple documentation sets from a single provider
1208425bb815Sopenharmony_ci# (such as a company or product suite) can be grouped.
1209425bb815Sopenharmony_ci# The default value is: Doxygen generated docs.
1210425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_DOCSET is set to YES.
1211425bb815Sopenharmony_ci
1212425bb815Sopenharmony_ciDOCSET_FEEDNAME        = "Doxygen generated docs"
1213425bb815Sopenharmony_ci
1214425bb815Sopenharmony_ci# This tag specifies a string that should uniquely identify the documentation
1215425bb815Sopenharmony_ci# set bundle. This should be a reverse domain-name style string, e.g.
1216425bb815Sopenharmony_ci# com.mycompany.MyDocSet. Doxygen will append .docset to the name.
1217425bb815Sopenharmony_ci# The default value is: org.doxygen.Project.
1218425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_DOCSET is set to YES.
1219425bb815Sopenharmony_ci
1220425bb815Sopenharmony_ciDOCSET_BUNDLE_ID       = org.doxygen.Project
1221425bb815Sopenharmony_ci
1222425bb815Sopenharmony_ci# The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify
1223425bb815Sopenharmony_ci# the documentation publisher. This should be a reverse domain-name style
1224425bb815Sopenharmony_ci# string, e.g. com.mycompany.MyDocSet.documentation.
1225425bb815Sopenharmony_ci# The default value is: org.doxygen.Publisher.
1226425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_DOCSET is set to YES.
1227425bb815Sopenharmony_ci
1228425bb815Sopenharmony_ciDOCSET_PUBLISHER_ID    = org.doxygen.Publisher
1229425bb815Sopenharmony_ci
1230425bb815Sopenharmony_ci# The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher.
1231425bb815Sopenharmony_ci# The default value is: Publisher.
1232425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_DOCSET is set to YES.
1233425bb815Sopenharmony_ci
1234425bb815Sopenharmony_ciDOCSET_PUBLISHER_NAME  = Publisher
1235425bb815Sopenharmony_ci
1236425bb815Sopenharmony_ci# If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three
1237425bb815Sopenharmony_ci# additional HTML index files: index.hhp, index.hhc, and index.hhk. The
1238425bb815Sopenharmony_ci# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop
1239425bb815Sopenharmony_ci# (see: http://www.microsoft.com/en-us/download/details.aspx?id=21138) on
1240425bb815Sopenharmony_ci# Windows.
1241425bb815Sopenharmony_ci#
1242425bb815Sopenharmony_ci# The HTML Help Workshop contains a compiler that can convert all HTML output
1243425bb815Sopenharmony_ci# generated by doxygen into a single compiled HTML file (.chm). Compiled HTML
1244425bb815Sopenharmony_ci# files are now used as the Windows 98 help format, and will replace the old
1245425bb815Sopenharmony_ci# Windows help format (.hlp) on all Windows platforms in the future. Compressed
1246425bb815Sopenharmony_ci# HTML files also contain an index, a table of contents, and you can search for
1247425bb815Sopenharmony_ci# words in the documentation. The HTML workshop also contains a viewer for
1248425bb815Sopenharmony_ci# compressed HTML files.
1249425bb815Sopenharmony_ci# The default value is: NO.
1250425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_HTML is set to YES.
1251425bb815Sopenharmony_ci
1252425bb815Sopenharmony_ciGENERATE_HTMLHELP      = NO
1253425bb815Sopenharmony_ci
1254425bb815Sopenharmony_ci# The CHM_FILE tag can be used to specify the file name of the resulting .chm
1255425bb815Sopenharmony_ci# file. You can add a path in front of the file if the result should not be
1256425bb815Sopenharmony_ci# written to the html output directory.
1257425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_HTMLHELP is set to YES.
1258425bb815Sopenharmony_ci
1259425bb815Sopenharmony_ciCHM_FILE               =
1260425bb815Sopenharmony_ci
1261425bb815Sopenharmony_ci# The HHC_LOCATION tag can be used to specify the location (absolute path
1262425bb815Sopenharmony_ci# including file name) of the HTML help compiler (hhc.exe). If non-empty,
1263425bb815Sopenharmony_ci# doxygen will try to run the HTML help compiler on the generated index.hhp.
1264425bb815Sopenharmony_ci# The file has to be specified with full path.
1265425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_HTMLHELP is set to YES.
1266425bb815Sopenharmony_ci
1267425bb815Sopenharmony_ciHHC_LOCATION           =
1268425bb815Sopenharmony_ci
1269425bb815Sopenharmony_ci# The GENERATE_CHI flag controls if a separate .chi index file is generated
1270425bb815Sopenharmony_ci# (YES) or that it should be included in the master .chm file (NO).
1271425bb815Sopenharmony_ci# The default value is: NO.
1272425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_HTMLHELP is set to YES.
1273425bb815Sopenharmony_ci
1274425bb815Sopenharmony_ciGENERATE_CHI           = NO
1275425bb815Sopenharmony_ci
1276425bb815Sopenharmony_ci# The CHM_INDEX_ENCODING is used to encode HtmlHelp index (hhk), content (hhc)
1277425bb815Sopenharmony_ci# and project file content.
1278425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_HTMLHELP is set to YES.
1279425bb815Sopenharmony_ci
1280425bb815Sopenharmony_ciCHM_INDEX_ENCODING     =
1281425bb815Sopenharmony_ci
1282425bb815Sopenharmony_ci# The BINARY_TOC flag controls whether a binary table of contents is generated
1283425bb815Sopenharmony_ci# (YES) or a normal table of contents (NO) in the .chm file. Furthermore it
1284425bb815Sopenharmony_ci# enables the Previous and Next buttons.
1285425bb815Sopenharmony_ci# The default value is: NO.
1286425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_HTMLHELP is set to YES.
1287425bb815Sopenharmony_ci
1288425bb815Sopenharmony_ciBINARY_TOC             = NO
1289425bb815Sopenharmony_ci
1290425bb815Sopenharmony_ci# The TOC_EXPAND flag can be set to YES to add extra items for group members to
1291425bb815Sopenharmony_ci# the table of contents of the HTML help documentation and to the tree view.
1292425bb815Sopenharmony_ci# The default value is: NO.
1293425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_HTMLHELP is set to YES.
1294425bb815Sopenharmony_ci
1295425bb815Sopenharmony_ciTOC_EXPAND             = NO
1296425bb815Sopenharmony_ci
1297425bb815Sopenharmony_ci# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and
1298425bb815Sopenharmony_ci# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that
1299425bb815Sopenharmony_ci# can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help
1300425bb815Sopenharmony_ci# (.qch) of the generated HTML documentation.
1301425bb815Sopenharmony_ci# The default value is: NO.
1302425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_HTML is set to YES.
1303425bb815Sopenharmony_ci
1304425bb815Sopenharmony_ciGENERATE_QHP           = NO
1305425bb815Sopenharmony_ci
1306425bb815Sopenharmony_ci# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify
1307425bb815Sopenharmony_ci# the file name of the resulting .qch file. The path specified is relative to
1308425bb815Sopenharmony_ci# the HTML output folder.
1309425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_QHP is set to YES.
1310425bb815Sopenharmony_ci
1311425bb815Sopenharmony_ciQCH_FILE               =
1312425bb815Sopenharmony_ci
1313425bb815Sopenharmony_ci# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help
1314425bb815Sopenharmony_ci# Project output. For more information please see Qt Help Project / Namespace
1315425bb815Sopenharmony_ci# (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#namespace).
1316425bb815Sopenharmony_ci# The default value is: org.doxygen.Project.
1317425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_QHP is set to YES.
1318425bb815Sopenharmony_ci
1319425bb815Sopenharmony_ciQHP_NAMESPACE          = org.doxygen.Project
1320425bb815Sopenharmony_ci
1321425bb815Sopenharmony_ci# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt
1322425bb815Sopenharmony_ci# Help Project output. For more information please see Qt Help Project / Virtual
1323425bb815Sopenharmony_ci# Folders (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#virtual-
1324425bb815Sopenharmony_ci# folders).
1325425bb815Sopenharmony_ci# The default value is: doc.
1326425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_QHP is set to YES.
1327425bb815Sopenharmony_ci
1328425bb815Sopenharmony_ciQHP_VIRTUAL_FOLDER     = doc
1329425bb815Sopenharmony_ci
1330425bb815Sopenharmony_ci# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom
1331425bb815Sopenharmony_ci# filter to add. For more information please see Qt Help Project / Custom
1332425bb815Sopenharmony_ci# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom-
1333425bb815Sopenharmony_ci# filters).
1334425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_QHP is set to YES.
1335425bb815Sopenharmony_ci
1336425bb815Sopenharmony_ciQHP_CUST_FILTER_NAME   =
1337425bb815Sopenharmony_ci
1338425bb815Sopenharmony_ci# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the
1339425bb815Sopenharmony_ci# custom filter to add. For more information please see Qt Help Project / Custom
1340425bb815Sopenharmony_ci# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom-
1341425bb815Sopenharmony_ci# filters).
1342425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_QHP is set to YES.
1343425bb815Sopenharmony_ci
1344425bb815Sopenharmony_ciQHP_CUST_FILTER_ATTRS  =
1345425bb815Sopenharmony_ci
1346425bb815Sopenharmony_ci# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this
1347425bb815Sopenharmony_ci# project's filter section matches. Qt Help Project / Filter Attributes (see:
1348425bb815Sopenharmony_ci# http://qt-project.org/doc/qt-4.8/qthelpproject.html#filter-attributes).
1349425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_QHP is set to YES.
1350425bb815Sopenharmony_ci
1351425bb815Sopenharmony_ciQHP_SECT_FILTER_ATTRS  =
1352425bb815Sopenharmony_ci
1353425bb815Sopenharmony_ci# The QHG_LOCATION tag can be used to specify the location of Qt's
1354425bb815Sopenharmony_ci# qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the
1355425bb815Sopenharmony_ci# generated .qhp file.
1356425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_QHP is set to YES.
1357425bb815Sopenharmony_ci
1358425bb815Sopenharmony_ciQHG_LOCATION           =
1359425bb815Sopenharmony_ci
1360425bb815Sopenharmony_ci# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be
1361425bb815Sopenharmony_ci# generated, together with the HTML files, they form an Eclipse help plugin. To
1362425bb815Sopenharmony_ci# install this plugin and make it available under the help contents menu in
1363425bb815Sopenharmony_ci# Eclipse, the contents of the directory containing the HTML and XML files needs
1364425bb815Sopenharmony_ci# to be copied into the plugins directory of eclipse. The name of the directory
1365425bb815Sopenharmony_ci# within the plugins directory should be the same as the ECLIPSE_DOC_ID value.
1366425bb815Sopenharmony_ci# After copying Eclipse needs to be restarted before the help appears.
1367425bb815Sopenharmony_ci# The default value is: NO.
1368425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_HTML is set to YES.
1369425bb815Sopenharmony_ci
1370425bb815Sopenharmony_ciGENERATE_ECLIPSEHELP   = NO
1371425bb815Sopenharmony_ci
1372425bb815Sopenharmony_ci# A unique identifier for the Eclipse help plugin. When installing the plugin
1373425bb815Sopenharmony_ci# the directory name containing the HTML and XML files should also have this
1374425bb815Sopenharmony_ci# name. Each documentation set should have its own identifier.
1375425bb815Sopenharmony_ci# The default value is: org.doxygen.Project.
1376425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES.
1377425bb815Sopenharmony_ci
1378425bb815Sopenharmony_ciECLIPSE_DOC_ID         = org.doxygen.Project
1379425bb815Sopenharmony_ci
1380425bb815Sopenharmony_ci# If you want full control over the layout of the generated HTML pages it might
1381425bb815Sopenharmony_ci# be necessary to disable the index and replace it with your own. The
1382425bb815Sopenharmony_ci# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top
1383425bb815Sopenharmony_ci# of each HTML page. A value of NO enables the index and the value YES disables
1384425bb815Sopenharmony_ci# it. Since the tabs in the index contain the same information as the navigation
1385425bb815Sopenharmony_ci# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES.
1386425bb815Sopenharmony_ci# The default value is: NO.
1387425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_HTML is set to YES.
1388425bb815Sopenharmony_ci
1389425bb815Sopenharmony_ciDISABLE_INDEX          = YES
1390425bb815Sopenharmony_ci
1391425bb815Sopenharmony_ci# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index
1392425bb815Sopenharmony_ci# structure should be generated to display hierarchical information. If the tag
1393425bb815Sopenharmony_ci# value is set to YES, a side panel will be generated containing a tree-like
1394425bb815Sopenharmony_ci# index structure (just like the one that is generated for HTML Help). For this
1395425bb815Sopenharmony_ci# to work a browser that supports JavaScript, DHTML, CSS and frames is required
1396425bb815Sopenharmony_ci# (i.e. any modern browser). Windows users are probably better off using the
1397425bb815Sopenharmony_ci# HTML help feature. Via custom style sheets (see HTML_EXTRA_STYLESHEET) one can
1398425bb815Sopenharmony_ci# further fine-tune the look of the index. As an example, the default style
1399425bb815Sopenharmony_ci# sheet generated by doxygen has an example that shows how to put an image at
1400425bb815Sopenharmony_ci# the root of the tree instead of the PROJECT_NAME. Since the tree basically has
1401425bb815Sopenharmony_ci# the same information as the tab index, you could consider setting
1402425bb815Sopenharmony_ci# DISABLE_INDEX to YES when enabling this option.
1403425bb815Sopenharmony_ci# The default value is: NO.
1404425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_HTML is set to YES.
1405425bb815Sopenharmony_ci
1406425bb815Sopenharmony_ciGENERATE_TREEVIEW      = YES
1407425bb815Sopenharmony_ci
1408425bb815Sopenharmony_ci# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that
1409425bb815Sopenharmony_ci# doxygen will group on one line in the generated HTML documentation.
1410425bb815Sopenharmony_ci#
1411425bb815Sopenharmony_ci# Note that a value of 0 will completely suppress the enum values from appearing
1412425bb815Sopenharmony_ci# in the overview section.
1413425bb815Sopenharmony_ci# Minimum value: 0, maximum value: 20, default value: 4.
1414425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_HTML is set to YES.
1415425bb815Sopenharmony_ci
1416425bb815Sopenharmony_ciENUM_VALUES_PER_LINE   = 4
1417425bb815Sopenharmony_ci
1418425bb815Sopenharmony_ci# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used
1419425bb815Sopenharmony_ci# to set the initial width (in pixels) of the frame in which the tree is shown.
1420425bb815Sopenharmony_ci# Minimum value: 0, maximum value: 1500, default value: 250.
1421425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_HTML is set to YES.
1422425bb815Sopenharmony_ci
1423425bb815Sopenharmony_ciTREEVIEW_WIDTH         = 250
1424425bb815Sopenharmony_ci
1425425bb815Sopenharmony_ci# If the EXT_LINKS_IN_WINDOW option is set to YES, doxygen will open links to
1426425bb815Sopenharmony_ci# external symbols imported via tag files in a separate window.
1427425bb815Sopenharmony_ci# The default value is: NO.
1428425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_HTML is set to YES.
1429425bb815Sopenharmony_ci
1430425bb815Sopenharmony_ciEXT_LINKS_IN_WINDOW    = NO
1431425bb815Sopenharmony_ci
1432425bb815Sopenharmony_ci# Use this tag to change the font size of LaTeX formulas included as images in
1433425bb815Sopenharmony_ci# the HTML documentation. When you change the font size after a successful
1434425bb815Sopenharmony_ci# doxygen run you need to manually remove any form_*.png images from the HTML
1435425bb815Sopenharmony_ci# output directory to force them to be regenerated.
1436425bb815Sopenharmony_ci# Minimum value: 8, maximum value: 50, default value: 10.
1437425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_HTML is set to YES.
1438425bb815Sopenharmony_ci
1439425bb815Sopenharmony_ciFORMULA_FONTSIZE       = 10
1440425bb815Sopenharmony_ci
1441425bb815Sopenharmony_ci# Use the FORMULA_TRANPARENT tag to determine whether or not the images
1442425bb815Sopenharmony_ci# generated for formulas are transparent PNGs. Transparent PNGs are not
1443425bb815Sopenharmony_ci# supported properly for IE 6.0, but are supported on all modern browsers.
1444425bb815Sopenharmony_ci#
1445425bb815Sopenharmony_ci# Note that when changing this option you need to delete any form_*.png files in
1446425bb815Sopenharmony_ci# the HTML output directory before the changes have effect.
1447425bb815Sopenharmony_ci# The default value is: YES.
1448425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_HTML is set to YES.
1449425bb815Sopenharmony_ci
1450425bb815Sopenharmony_ciFORMULA_TRANSPARENT    = YES
1451425bb815Sopenharmony_ci
1452425bb815Sopenharmony_ci# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see
1453425bb815Sopenharmony_ci# http://www.mathjax.org) which uses client side Javascript for the rendering
1454425bb815Sopenharmony_ci# instead of using pre-rendered bitmaps. Use this if you do not have LaTeX
1455425bb815Sopenharmony_ci# installed or if you want to formulas look prettier in the HTML output. When
1456425bb815Sopenharmony_ci# enabled you may also need to install MathJax separately and configure the path
1457425bb815Sopenharmony_ci# to it using the MATHJAX_RELPATH option.
1458425bb815Sopenharmony_ci# The default value is: NO.
1459425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_HTML is set to YES.
1460425bb815Sopenharmony_ci
1461425bb815Sopenharmony_ciUSE_MATHJAX            = NO
1462425bb815Sopenharmony_ci
1463425bb815Sopenharmony_ci# When MathJax is enabled you can set the default output format to be used for
1464425bb815Sopenharmony_ci# the MathJax output. See the MathJax site (see:
1465425bb815Sopenharmony_ci# http://docs.mathjax.org/en/latest/output.html) for more details.
1466425bb815Sopenharmony_ci# Possible values are: HTML-CSS (which is slower, but has the best
1467425bb815Sopenharmony_ci# compatibility), NativeMML (i.e. MathML) and SVG.
1468425bb815Sopenharmony_ci# The default value is: HTML-CSS.
1469425bb815Sopenharmony_ci# This tag requires that the tag USE_MATHJAX is set to YES.
1470425bb815Sopenharmony_ci
1471425bb815Sopenharmony_ciMATHJAX_FORMAT         = HTML-CSS
1472425bb815Sopenharmony_ci
1473425bb815Sopenharmony_ci# When MathJax is enabled you need to specify the location relative to the HTML
1474425bb815Sopenharmony_ci# output directory using the MATHJAX_RELPATH option. The destination directory
1475425bb815Sopenharmony_ci# should contain the MathJax.js script. For instance, if the mathjax directory
1476425bb815Sopenharmony_ci# is located at the same level as the HTML output directory, then
1477425bb815Sopenharmony_ci# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax
1478425bb815Sopenharmony_ci# Content Delivery Network so you can quickly see the result without installing
1479425bb815Sopenharmony_ci# MathJax. However, it is strongly recommended to install a local copy of
1480425bb815Sopenharmony_ci# MathJax from http://www.mathjax.org before deployment.
1481425bb815Sopenharmony_ci# The default value is: http://cdn.mathjax.org/mathjax/latest.
1482425bb815Sopenharmony_ci# This tag requires that the tag USE_MATHJAX is set to YES.
1483425bb815Sopenharmony_ci
1484425bb815Sopenharmony_ciMATHJAX_RELPATH        = http://cdn.mathjax.org/mathjax/latest
1485425bb815Sopenharmony_ci
1486425bb815Sopenharmony_ci# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax
1487425bb815Sopenharmony_ci# extension names that should be enabled during MathJax rendering. For example
1488425bb815Sopenharmony_ci# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols
1489425bb815Sopenharmony_ci# This tag requires that the tag USE_MATHJAX is set to YES.
1490425bb815Sopenharmony_ci
1491425bb815Sopenharmony_ciMATHJAX_EXTENSIONS     =
1492425bb815Sopenharmony_ci
1493425bb815Sopenharmony_ci# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces
1494425bb815Sopenharmony_ci# of code that will be used on startup of the MathJax code. See the MathJax site
1495425bb815Sopenharmony_ci# (see: http://docs.mathjax.org/en/latest/output.html) for more details. For an
1496425bb815Sopenharmony_ci# example see the documentation.
1497425bb815Sopenharmony_ci# This tag requires that the tag USE_MATHJAX is set to YES.
1498425bb815Sopenharmony_ci
1499425bb815Sopenharmony_ciMATHJAX_CODEFILE       =
1500425bb815Sopenharmony_ci
1501425bb815Sopenharmony_ci# When the SEARCHENGINE tag is enabled doxygen will generate a search box for
1502425bb815Sopenharmony_ci# the HTML output. The underlying search engine uses javascript and DHTML and
1503425bb815Sopenharmony_ci# should work on any modern browser. Note that when using HTML help
1504425bb815Sopenharmony_ci# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET)
1505425bb815Sopenharmony_ci# there is already a search function so this one should typically be disabled.
1506425bb815Sopenharmony_ci# For large projects the javascript based search engine can be slow, then
1507425bb815Sopenharmony_ci# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to
1508425bb815Sopenharmony_ci# search using the keyboard; to jump to the search box use <access key> + S
1509425bb815Sopenharmony_ci# (what the <access key> is depends on the OS and browser, but it is typically
1510425bb815Sopenharmony_ci# <CTRL>, <ALT>/<option>, or both). Inside the search box use the <cursor down
1511425bb815Sopenharmony_ci# key> to jump into the search results window, the results can be navigated
1512425bb815Sopenharmony_ci# using the <cursor keys>. Press <Enter> to select an item or <escape> to cancel
1513425bb815Sopenharmony_ci# the search. The filter options can be selected when the cursor is inside the
1514425bb815Sopenharmony_ci# search box by pressing <Shift>+<cursor down>. Also here use the <cursor keys>
1515425bb815Sopenharmony_ci# to select a filter and <Enter> or <escape> to activate or cancel the filter
1516425bb815Sopenharmony_ci# option.
1517425bb815Sopenharmony_ci# The default value is: YES.
1518425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_HTML is set to YES.
1519425bb815Sopenharmony_ci
1520425bb815Sopenharmony_ciSEARCHENGINE           = YES
1521425bb815Sopenharmony_ci
1522425bb815Sopenharmony_ci# When the SERVER_BASED_SEARCH tag is enabled the search engine will be
1523425bb815Sopenharmony_ci# implemented using a web server instead of a web client using Javascript. There
1524425bb815Sopenharmony_ci# are two flavors of web server based searching depending on the EXTERNAL_SEARCH
1525425bb815Sopenharmony_ci# setting. When disabled, doxygen will generate a PHP script for searching and
1526425bb815Sopenharmony_ci# an index file used by the script. When EXTERNAL_SEARCH is enabled the indexing
1527425bb815Sopenharmony_ci# and searching needs to be provided by external tools. See the section
1528425bb815Sopenharmony_ci# "External Indexing and Searching" for details.
1529425bb815Sopenharmony_ci# The default value is: NO.
1530425bb815Sopenharmony_ci# This tag requires that the tag SEARCHENGINE is set to YES.
1531425bb815Sopenharmony_ci
1532425bb815Sopenharmony_ciSERVER_BASED_SEARCH    = NO
1533425bb815Sopenharmony_ci
1534425bb815Sopenharmony_ci# When EXTERNAL_SEARCH tag is enabled doxygen will no longer generate the PHP
1535425bb815Sopenharmony_ci# script for searching. Instead the search results are written to an XML file
1536425bb815Sopenharmony_ci# which needs to be processed by an external indexer. Doxygen will invoke an
1537425bb815Sopenharmony_ci# external search engine pointed to by the SEARCHENGINE_URL option to obtain the
1538425bb815Sopenharmony_ci# search results.
1539425bb815Sopenharmony_ci#
1540425bb815Sopenharmony_ci# Doxygen ships with an example indexer (doxyindexer) and search engine
1541425bb815Sopenharmony_ci# (doxysearch.cgi) which are based on the open source search engine library
1542425bb815Sopenharmony_ci# Xapian (see: http://xapian.org/).
1543425bb815Sopenharmony_ci#
1544425bb815Sopenharmony_ci# See the section "External Indexing and Searching" for details.
1545425bb815Sopenharmony_ci# The default value is: NO.
1546425bb815Sopenharmony_ci# This tag requires that the tag SEARCHENGINE is set to YES.
1547425bb815Sopenharmony_ci
1548425bb815Sopenharmony_ciEXTERNAL_SEARCH        = NO
1549425bb815Sopenharmony_ci
1550425bb815Sopenharmony_ci# The SEARCHENGINE_URL should point to a search engine hosted by a web server
1551425bb815Sopenharmony_ci# which will return the search results when EXTERNAL_SEARCH is enabled.
1552425bb815Sopenharmony_ci#
1553425bb815Sopenharmony_ci# Doxygen ships with an example indexer (doxyindexer) and search engine
1554425bb815Sopenharmony_ci# (doxysearch.cgi) which are based on the open source search engine library
1555425bb815Sopenharmony_ci# Xapian (see: http://xapian.org/). See the section "External Indexing and
1556425bb815Sopenharmony_ci# Searching" for details.
1557425bb815Sopenharmony_ci# This tag requires that the tag SEARCHENGINE is set to YES.
1558425bb815Sopenharmony_ci
1559425bb815Sopenharmony_ciSEARCHENGINE_URL       =
1560425bb815Sopenharmony_ci
1561425bb815Sopenharmony_ci# When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the unindexed
1562425bb815Sopenharmony_ci# search data is written to a file for indexing by an external tool. With the
1563425bb815Sopenharmony_ci# SEARCHDATA_FILE tag the name of this file can be specified.
1564425bb815Sopenharmony_ci# The default file is: searchdata.xml.
1565425bb815Sopenharmony_ci# This tag requires that the tag SEARCHENGINE is set to YES.
1566425bb815Sopenharmony_ci
1567425bb815Sopenharmony_ciSEARCHDATA_FILE        = searchdata.xml
1568425bb815Sopenharmony_ci
1569425bb815Sopenharmony_ci# When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the
1570425bb815Sopenharmony_ci# EXTERNAL_SEARCH_ID tag can be used as an identifier for the project. This is
1571425bb815Sopenharmony_ci# useful in combination with EXTRA_SEARCH_MAPPINGS to search through multiple
1572425bb815Sopenharmony_ci# projects and redirect the results back to the right project.
1573425bb815Sopenharmony_ci# This tag requires that the tag SEARCHENGINE is set to YES.
1574425bb815Sopenharmony_ci
1575425bb815Sopenharmony_ciEXTERNAL_SEARCH_ID     =
1576425bb815Sopenharmony_ci
1577425bb815Sopenharmony_ci# The EXTRA_SEARCH_MAPPINGS tag can be used to enable searching through doxygen
1578425bb815Sopenharmony_ci# projects other than the one defined by this configuration file, but that are
1579425bb815Sopenharmony_ci# all added to the same external search index. Each project needs to have a
1580425bb815Sopenharmony_ci# unique id set via EXTERNAL_SEARCH_ID. The search mapping then maps the id of
1581425bb815Sopenharmony_ci# to a relative location where the documentation can be found. The format is:
1582425bb815Sopenharmony_ci# EXTRA_SEARCH_MAPPINGS = tagname1=loc1 tagname2=loc2 ...
1583425bb815Sopenharmony_ci# This tag requires that the tag SEARCHENGINE is set to YES.
1584425bb815Sopenharmony_ci
1585425bb815Sopenharmony_ciEXTRA_SEARCH_MAPPINGS  =
1586425bb815Sopenharmony_ci
1587425bb815Sopenharmony_ci#---------------------------------------------------------------------------
1588425bb815Sopenharmony_ci# Configuration options related to the LaTeX output
1589425bb815Sopenharmony_ci#---------------------------------------------------------------------------
1590425bb815Sopenharmony_ci
1591425bb815Sopenharmony_ci# If the GENERATE_LATEX tag is set to YES, doxygen will generate LaTeX output.
1592425bb815Sopenharmony_ci# The default value is: YES.
1593425bb815Sopenharmony_ci
1594425bb815Sopenharmony_ciGENERATE_LATEX         = NO
1595425bb815Sopenharmony_ci
1596425bb815Sopenharmony_ci# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. If a
1597425bb815Sopenharmony_ci# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
1598425bb815Sopenharmony_ci# it.
1599425bb815Sopenharmony_ci# The default directory is: latex.
1600425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_LATEX is set to YES.
1601425bb815Sopenharmony_ci
1602425bb815Sopenharmony_ciLATEX_OUTPUT           = latex
1603425bb815Sopenharmony_ci
1604425bb815Sopenharmony_ci# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be
1605425bb815Sopenharmony_ci# invoked.
1606425bb815Sopenharmony_ci#
1607425bb815Sopenharmony_ci# Note that when enabling USE_PDFLATEX this option is only used for generating
1608425bb815Sopenharmony_ci# bitmaps for formulas in the HTML output, but not in the Makefile that is
1609425bb815Sopenharmony_ci# written to the output directory.
1610425bb815Sopenharmony_ci# The default file is: latex.
1611425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_LATEX is set to YES.
1612425bb815Sopenharmony_ci
1613425bb815Sopenharmony_ciLATEX_CMD_NAME         = latex
1614425bb815Sopenharmony_ci
1615425bb815Sopenharmony_ci# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to generate
1616425bb815Sopenharmony_ci# index for LaTeX.
1617425bb815Sopenharmony_ci# The default file is: makeindex.
1618425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_LATEX is set to YES.
1619425bb815Sopenharmony_ci
1620425bb815Sopenharmony_ciMAKEINDEX_CMD_NAME     = makeindex
1621425bb815Sopenharmony_ci
1622425bb815Sopenharmony_ci# If the COMPACT_LATEX tag is set to YES, doxygen generates more compact LaTeX
1623425bb815Sopenharmony_ci# documents. This may be useful for small projects and may help to save some
1624425bb815Sopenharmony_ci# trees in general.
1625425bb815Sopenharmony_ci# The default value is: NO.
1626425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_LATEX is set to YES.
1627425bb815Sopenharmony_ci
1628425bb815Sopenharmony_ciCOMPACT_LATEX          = NO
1629425bb815Sopenharmony_ci
1630425bb815Sopenharmony_ci# The PAPER_TYPE tag can be used to set the paper type that is used by the
1631425bb815Sopenharmony_ci# printer.
1632425bb815Sopenharmony_ci# Possible values are: a4 (210 x 297 mm), letter (8.5 x 11 inches), legal (8.5 x
1633425bb815Sopenharmony_ci# 14 inches) and executive (7.25 x 10.5 inches).
1634425bb815Sopenharmony_ci# The default value is: a4.
1635425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_LATEX is set to YES.
1636425bb815Sopenharmony_ci
1637425bb815Sopenharmony_ciPAPER_TYPE             = a4
1638425bb815Sopenharmony_ci
1639425bb815Sopenharmony_ci# The EXTRA_PACKAGES tag can be used to specify one or more LaTeX package names
1640425bb815Sopenharmony_ci# that should be included in the LaTeX output. To get the times font for
1641425bb815Sopenharmony_ci# instance you can specify
1642425bb815Sopenharmony_ci# EXTRA_PACKAGES=times
1643425bb815Sopenharmony_ci# If left blank no extra packages will be included.
1644425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_LATEX is set to YES.
1645425bb815Sopenharmony_ci
1646425bb815Sopenharmony_ciEXTRA_PACKAGES         =
1647425bb815Sopenharmony_ci
1648425bb815Sopenharmony_ci# The LATEX_HEADER tag can be used to specify a personal LaTeX header for the
1649425bb815Sopenharmony_ci# generated LaTeX document. The header should contain everything until the first
1650425bb815Sopenharmony_ci# chapter. If it is left blank doxygen will generate a standard header. See
1651425bb815Sopenharmony_ci# section "Doxygen usage" for information on how to let doxygen write the
1652425bb815Sopenharmony_ci# default header to a separate file.
1653425bb815Sopenharmony_ci#
1654425bb815Sopenharmony_ci# Note: Only use a user-defined header if you know what you are doing! The
1655425bb815Sopenharmony_ci# following commands have a special meaning inside the header: $title,
1656425bb815Sopenharmony_ci# $datetime, $date, $doxygenversion, $projectname, $projectnumber,
1657425bb815Sopenharmony_ci# $projectbrief, $projectlogo. Doxygen will replace $title with the empty
1658425bb815Sopenharmony_ci# string, for the replacement values of the other commands the user is referred
1659425bb815Sopenharmony_ci# to HTML_HEADER.
1660425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_LATEX is set to YES.
1661425bb815Sopenharmony_ci
1662425bb815Sopenharmony_ciLATEX_HEADER           =
1663425bb815Sopenharmony_ci
1664425bb815Sopenharmony_ci# The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for the
1665425bb815Sopenharmony_ci# generated LaTeX document. The footer should contain everything after the last
1666425bb815Sopenharmony_ci# chapter. If it is left blank doxygen will generate a standard footer. See
1667425bb815Sopenharmony_ci# LATEX_HEADER for more information on how to generate a default footer and what
1668425bb815Sopenharmony_ci# special commands can be used inside the footer.
1669425bb815Sopenharmony_ci#
1670425bb815Sopenharmony_ci# Note: Only use a user-defined footer if you know what you are doing!
1671425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_LATEX is set to YES.
1672425bb815Sopenharmony_ci
1673425bb815Sopenharmony_ciLATEX_FOOTER           =
1674425bb815Sopenharmony_ci
1675425bb815Sopenharmony_ci# The LATEX_EXTRA_STYLESHEET tag can be used to specify additional user-defined
1676425bb815Sopenharmony_ci# LaTeX style sheets that are included after the standard style sheets created
1677425bb815Sopenharmony_ci# by doxygen. Using this option one can overrule certain style aspects. Doxygen
1678425bb815Sopenharmony_ci# will copy the style sheet files to the output directory.
1679425bb815Sopenharmony_ci# Note: The order of the extra style sheet files is of importance (e.g. the last
1680425bb815Sopenharmony_ci# style sheet in the list overrules the setting of the previous ones in the
1681425bb815Sopenharmony_ci# list).
1682425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_LATEX is set to YES.
1683425bb815Sopenharmony_ci
1684425bb815Sopenharmony_ci# LATEX_EXTRA_STYLESHEET =
1685425bb815Sopenharmony_ci
1686425bb815Sopenharmony_ci# The LATEX_EXTRA_FILES tag can be used to specify one or more extra images or
1687425bb815Sopenharmony_ci# other source files which should be copied to the LATEX_OUTPUT output
1688425bb815Sopenharmony_ci# directory. Note that the files will be copied as-is; there are no commands or
1689425bb815Sopenharmony_ci# markers available.
1690425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_LATEX is set to YES.
1691425bb815Sopenharmony_ci
1692425bb815Sopenharmony_ciLATEX_EXTRA_FILES      =
1693425bb815Sopenharmony_ci
1694425bb815Sopenharmony_ci# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated is
1695425bb815Sopenharmony_ci# prepared for conversion to PDF (using ps2pdf or pdflatex). The PDF file will
1696425bb815Sopenharmony_ci# contain links (just like the HTML output) instead of page references. This
1697425bb815Sopenharmony_ci# makes the output suitable for online browsing using a PDF viewer.
1698425bb815Sopenharmony_ci# The default value is: YES.
1699425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_LATEX is set to YES.
1700425bb815Sopenharmony_ci
1701425bb815Sopenharmony_ciPDF_HYPERLINKS         = YES
1702425bb815Sopenharmony_ci
1703425bb815Sopenharmony_ci# If the USE_PDFLATEX tag is set to YES, doxygen will use pdflatex to generate
1704425bb815Sopenharmony_ci# the PDF file directly from the LaTeX files. Set this option to YES, to get a
1705425bb815Sopenharmony_ci# higher quality PDF documentation.
1706425bb815Sopenharmony_ci# The default value is: YES.
1707425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_LATEX is set to YES.
1708425bb815Sopenharmony_ci
1709425bb815Sopenharmony_ciUSE_PDFLATEX           = YES
1710425bb815Sopenharmony_ci
1711425bb815Sopenharmony_ci# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \batchmode
1712425bb815Sopenharmony_ci# command to the generated LaTeX files. This will instruct LaTeX to keep running
1713425bb815Sopenharmony_ci# if errors occur, instead of asking the user for help. This option is also used
1714425bb815Sopenharmony_ci# when generating formulas in HTML.
1715425bb815Sopenharmony_ci# The default value is: NO.
1716425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_LATEX is set to YES.
1717425bb815Sopenharmony_ci
1718425bb815Sopenharmony_ciLATEX_BATCHMODE        = NO
1719425bb815Sopenharmony_ci
1720425bb815Sopenharmony_ci# If the LATEX_HIDE_INDICES tag is set to YES then doxygen will not include the
1721425bb815Sopenharmony_ci# index chapters (such as File Index, Compound Index, etc.) in the output.
1722425bb815Sopenharmony_ci# The default value is: NO.
1723425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_LATEX is set to YES.
1724425bb815Sopenharmony_ci
1725425bb815Sopenharmony_ciLATEX_HIDE_INDICES     = NO
1726425bb815Sopenharmony_ci
1727425bb815Sopenharmony_ci# If the LATEX_SOURCE_CODE tag is set to YES then doxygen will include source
1728425bb815Sopenharmony_ci# code with syntax highlighting in the LaTeX output.
1729425bb815Sopenharmony_ci#
1730425bb815Sopenharmony_ci# Note that which sources are shown also depends on other settings such as
1731425bb815Sopenharmony_ci# SOURCE_BROWSER.
1732425bb815Sopenharmony_ci# The default value is: NO.
1733425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_LATEX is set to YES.
1734425bb815Sopenharmony_ci
1735425bb815Sopenharmony_ciLATEX_SOURCE_CODE      = NO
1736425bb815Sopenharmony_ci
1737425bb815Sopenharmony_ci# The LATEX_BIB_STYLE tag can be used to specify the style to use for the
1738425bb815Sopenharmony_ci# bibliography, e.g. plainnat, or ieeetr. See
1739425bb815Sopenharmony_ci# http://en.wikipedia.org/wiki/BibTeX and \cite for more info.
1740425bb815Sopenharmony_ci# The default value is: plain.
1741425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_LATEX is set to YES.
1742425bb815Sopenharmony_ci
1743425bb815Sopenharmony_ciLATEX_BIB_STYLE        = plain
1744425bb815Sopenharmony_ci
1745425bb815Sopenharmony_ci#---------------------------------------------------------------------------
1746425bb815Sopenharmony_ci# Configuration options related to the RTF output
1747425bb815Sopenharmony_ci#---------------------------------------------------------------------------
1748425bb815Sopenharmony_ci
1749425bb815Sopenharmony_ci# If the GENERATE_RTF tag is set to YES, doxygen will generate RTF output. The
1750425bb815Sopenharmony_ci# RTF output is optimized for Word 97 and may not look too pretty with other RTF
1751425bb815Sopenharmony_ci# readers/editors.
1752425bb815Sopenharmony_ci# The default value is: NO.
1753425bb815Sopenharmony_ci
1754425bb815Sopenharmony_ciGENERATE_RTF           = NO
1755425bb815Sopenharmony_ci
1756425bb815Sopenharmony_ci# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. If a
1757425bb815Sopenharmony_ci# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
1758425bb815Sopenharmony_ci# it.
1759425bb815Sopenharmony_ci# The default directory is: rtf.
1760425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_RTF is set to YES.
1761425bb815Sopenharmony_ci
1762425bb815Sopenharmony_ciRTF_OUTPUT             = rtf
1763425bb815Sopenharmony_ci
1764425bb815Sopenharmony_ci# If the COMPACT_RTF tag is set to YES, doxygen generates more compact RTF
1765425bb815Sopenharmony_ci# documents. This may be useful for small projects and may help to save some
1766425bb815Sopenharmony_ci# trees in general.
1767425bb815Sopenharmony_ci# The default value is: NO.
1768425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_RTF is set to YES.
1769425bb815Sopenharmony_ci
1770425bb815Sopenharmony_ciCOMPACT_RTF            = NO
1771425bb815Sopenharmony_ci
1772425bb815Sopenharmony_ci# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated will
1773425bb815Sopenharmony_ci# contain hyperlink fields. The RTF file will contain links (just like the HTML
1774425bb815Sopenharmony_ci# output) instead of page references. This makes the output suitable for online
1775425bb815Sopenharmony_ci# browsing using Word or some other Word compatible readers that support those
1776425bb815Sopenharmony_ci# fields.
1777425bb815Sopenharmony_ci#
1778425bb815Sopenharmony_ci# Note: WordPad (write) and others do not support links.
1779425bb815Sopenharmony_ci# The default value is: NO.
1780425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_RTF is set to YES.
1781425bb815Sopenharmony_ci
1782425bb815Sopenharmony_ciRTF_HYPERLINKS         = NO
1783425bb815Sopenharmony_ci
1784425bb815Sopenharmony_ci# Load stylesheet definitions from file. Syntax is similar to doxygen's config
1785425bb815Sopenharmony_ci# file, i.e. a series of assignments. You only have to provide replacements,
1786425bb815Sopenharmony_ci# missing definitions are set to their default value.
1787425bb815Sopenharmony_ci#
1788425bb815Sopenharmony_ci# See also section "Doxygen usage" for information on how to generate the
1789425bb815Sopenharmony_ci# default style sheet that doxygen normally uses.
1790425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_RTF is set to YES.
1791425bb815Sopenharmony_ci
1792425bb815Sopenharmony_ciRTF_STYLESHEET_FILE    =
1793425bb815Sopenharmony_ci
1794425bb815Sopenharmony_ci# Set optional variables used in the generation of an RTF document. Syntax is
1795425bb815Sopenharmony_ci# similar to doxygen's config file. A template extensions file can be generated
1796425bb815Sopenharmony_ci# using doxygen -e rtf extensionFile.
1797425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_RTF is set to YES.
1798425bb815Sopenharmony_ci
1799425bb815Sopenharmony_ciRTF_EXTENSIONS_FILE    =
1800425bb815Sopenharmony_ci
1801425bb815Sopenharmony_ci# If the RTF_SOURCE_CODE tag is set to YES then doxygen will include source code
1802425bb815Sopenharmony_ci# with syntax highlighting in the RTF output.
1803425bb815Sopenharmony_ci#
1804425bb815Sopenharmony_ci# Note that which sources are shown also depends on other settings such as
1805425bb815Sopenharmony_ci# SOURCE_BROWSER.
1806425bb815Sopenharmony_ci# The default value is: NO.
1807425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_RTF is set to YES.
1808425bb815Sopenharmony_ci
1809425bb815Sopenharmony_ci# RTF_SOURCE_CODE        = NO
1810425bb815Sopenharmony_ci
1811425bb815Sopenharmony_ci#---------------------------------------------------------------------------
1812425bb815Sopenharmony_ci# Configuration options related to the man page output
1813425bb815Sopenharmony_ci#---------------------------------------------------------------------------
1814425bb815Sopenharmony_ci
1815425bb815Sopenharmony_ci# If the GENERATE_MAN tag is set to YES, doxygen will generate man pages for
1816425bb815Sopenharmony_ci# classes and files.
1817425bb815Sopenharmony_ci# The default value is: NO.
1818425bb815Sopenharmony_ci
1819425bb815Sopenharmony_ciGENERATE_MAN           = NO
1820425bb815Sopenharmony_ci
1821425bb815Sopenharmony_ci# The MAN_OUTPUT tag is used to specify where the man pages will be put. If a
1822425bb815Sopenharmony_ci# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
1823425bb815Sopenharmony_ci# it. A directory man3 will be created inside the directory specified by
1824425bb815Sopenharmony_ci# MAN_OUTPUT.
1825425bb815Sopenharmony_ci# The default directory is: man.
1826425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_MAN is set to YES.
1827425bb815Sopenharmony_ci
1828425bb815Sopenharmony_ciMAN_OUTPUT             = man
1829425bb815Sopenharmony_ci
1830425bb815Sopenharmony_ci# The MAN_EXTENSION tag determines the extension that is added to the generated
1831425bb815Sopenharmony_ci# man pages. In case the manual section does not start with a number, the number
1832425bb815Sopenharmony_ci# 3 is prepended. The dot (.) at the beginning of the MAN_EXTENSION tag is
1833425bb815Sopenharmony_ci# optional.
1834425bb815Sopenharmony_ci# The default value is: .3.
1835425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_MAN is set to YES.
1836425bb815Sopenharmony_ci
1837425bb815Sopenharmony_ciMAN_EXTENSION          = .3
1838425bb815Sopenharmony_ci
1839425bb815Sopenharmony_ci# The MAN_SUBDIR tag determines the name of the directory created within
1840425bb815Sopenharmony_ci# MAN_OUTPUT in which the man pages are placed. If defaults to man followed by
1841425bb815Sopenharmony_ci# MAN_EXTENSION with the initial . removed.
1842425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_MAN is set to YES.
1843425bb815Sopenharmony_ci
1844425bb815Sopenharmony_ci# MAN_SUBDIR             =
1845425bb815Sopenharmony_ci
1846425bb815Sopenharmony_ci# If the MAN_LINKS tag is set to YES and doxygen generates man output, then it
1847425bb815Sopenharmony_ci# will generate one additional man file for each entity documented in the real
1848425bb815Sopenharmony_ci# man page(s). These additional files only source the real man page, but without
1849425bb815Sopenharmony_ci# them the man command would be unable to find the correct page.
1850425bb815Sopenharmony_ci# The default value is: NO.
1851425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_MAN is set to YES.
1852425bb815Sopenharmony_ci
1853425bb815Sopenharmony_ciMAN_LINKS              = NO
1854425bb815Sopenharmony_ci
1855425bb815Sopenharmony_ci#---------------------------------------------------------------------------
1856425bb815Sopenharmony_ci# Configuration options related to the XML output
1857425bb815Sopenharmony_ci#---------------------------------------------------------------------------
1858425bb815Sopenharmony_ci
1859425bb815Sopenharmony_ci# If the GENERATE_XML tag is set to YES, doxygen will generate an XML file that
1860425bb815Sopenharmony_ci# captures the structure of the code including all documentation.
1861425bb815Sopenharmony_ci# The default value is: NO.
1862425bb815Sopenharmony_ci
1863425bb815Sopenharmony_ciGENERATE_XML           = NO
1864425bb815Sopenharmony_ci
1865425bb815Sopenharmony_ci# The XML_OUTPUT tag is used to specify where the XML pages will be put. If a
1866425bb815Sopenharmony_ci# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
1867425bb815Sopenharmony_ci# it.
1868425bb815Sopenharmony_ci# The default directory is: xml.
1869425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_XML is set to YES.
1870425bb815Sopenharmony_ci
1871425bb815Sopenharmony_ciXML_OUTPUT             = xml
1872425bb815Sopenharmony_ci
1873425bb815Sopenharmony_ci# If the XML_PROGRAMLISTING tag is set to YES, doxygen will dump the program
1874425bb815Sopenharmony_ci# listings (including syntax highlighting and cross-referencing information) to
1875425bb815Sopenharmony_ci# the XML output. Note that enabling this will significantly increase the size
1876425bb815Sopenharmony_ci# of the XML output.
1877425bb815Sopenharmony_ci# The default value is: YES.
1878425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_XML is set to YES.
1879425bb815Sopenharmony_ci
1880425bb815Sopenharmony_ciXML_PROGRAMLISTING     = YES
1881425bb815Sopenharmony_ci
1882425bb815Sopenharmony_ci#---------------------------------------------------------------------------
1883425bb815Sopenharmony_ci# Configuration options related to the DOCBOOK output
1884425bb815Sopenharmony_ci#---------------------------------------------------------------------------
1885425bb815Sopenharmony_ci
1886425bb815Sopenharmony_ci# If the GENERATE_DOCBOOK tag is set to YES, doxygen will generate Docbook files
1887425bb815Sopenharmony_ci# that can be used to generate PDF.
1888425bb815Sopenharmony_ci# The default value is: NO.
1889425bb815Sopenharmony_ci
1890425bb815Sopenharmony_ciGENERATE_DOCBOOK       = NO
1891425bb815Sopenharmony_ci
1892425bb815Sopenharmony_ci# The DOCBOOK_OUTPUT tag is used to specify where the Docbook pages will be put.
1893425bb815Sopenharmony_ci# If a relative path is entered the value of OUTPUT_DIRECTORY will be put in
1894425bb815Sopenharmony_ci# front of it.
1895425bb815Sopenharmony_ci# The default directory is: docbook.
1896425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_DOCBOOK is set to YES.
1897425bb815Sopenharmony_ci
1898425bb815Sopenharmony_ciDOCBOOK_OUTPUT         = docbook
1899425bb815Sopenharmony_ci
1900425bb815Sopenharmony_ci# If the DOCBOOK_PROGRAMLISTING tag is set to YES, doxygen will include the
1901425bb815Sopenharmony_ci# program listings (including syntax highlighting and cross-referencing
1902425bb815Sopenharmony_ci# information) to the DOCBOOK output. Note that enabling this will significantly
1903425bb815Sopenharmony_ci# increase the size of the DOCBOOK output.
1904425bb815Sopenharmony_ci# The default value is: NO.
1905425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_DOCBOOK is set to YES.
1906425bb815Sopenharmony_ci
1907425bb815Sopenharmony_ci# DOCBOOK_PROGRAMLISTING = NO
1908425bb815Sopenharmony_ci
1909425bb815Sopenharmony_ci#---------------------------------------------------------------------------
1910425bb815Sopenharmony_ci# Configuration options for the AutoGen Definitions output
1911425bb815Sopenharmony_ci#---------------------------------------------------------------------------
1912425bb815Sopenharmony_ci
1913425bb815Sopenharmony_ci# If the GENERATE_AUTOGEN_DEF tag is set to YES, doxygen will generate an
1914425bb815Sopenharmony_ci# AutoGen Definitions (see http://autogen.sf.net) file that captures the
1915425bb815Sopenharmony_ci# structure of the code including all documentation. Note that this feature is
1916425bb815Sopenharmony_ci# still experimental and incomplete at the moment.
1917425bb815Sopenharmony_ci# The default value is: NO.
1918425bb815Sopenharmony_ci
1919425bb815Sopenharmony_ciGENERATE_AUTOGEN_DEF   = NO
1920425bb815Sopenharmony_ci
1921425bb815Sopenharmony_ci#---------------------------------------------------------------------------
1922425bb815Sopenharmony_ci# Configuration options related to the Perl module output
1923425bb815Sopenharmony_ci#---------------------------------------------------------------------------
1924425bb815Sopenharmony_ci
1925425bb815Sopenharmony_ci# If the GENERATE_PERLMOD tag is set to YES, doxygen will generate a Perl module
1926425bb815Sopenharmony_ci# file that captures the structure of the code including all documentation.
1927425bb815Sopenharmony_ci#
1928425bb815Sopenharmony_ci# Note that this feature is still experimental and incomplete at the moment.
1929425bb815Sopenharmony_ci# The default value is: NO.
1930425bb815Sopenharmony_ci
1931425bb815Sopenharmony_ciGENERATE_PERLMOD       = NO
1932425bb815Sopenharmony_ci
1933425bb815Sopenharmony_ci# If the PERLMOD_LATEX tag is set to YES, doxygen will generate the necessary
1934425bb815Sopenharmony_ci# Makefile rules, Perl scripts and LaTeX code to be able to generate PDF and DVI
1935425bb815Sopenharmony_ci# output from the Perl module output.
1936425bb815Sopenharmony_ci# The default value is: NO.
1937425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_PERLMOD is set to YES.
1938425bb815Sopenharmony_ci
1939425bb815Sopenharmony_ciPERLMOD_LATEX          = NO
1940425bb815Sopenharmony_ci
1941425bb815Sopenharmony_ci# If the PERLMOD_PRETTY tag is set to YES, the Perl module output will be nicely
1942425bb815Sopenharmony_ci# formatted so it can be parsed by a human reader. This is useful if you want to
1943425bb815Sopenharmony_ci# understand what is going on. On the other hand, if this tag is set to NO, the
1944425bb815Sopenharmony_ci# size of the Perl module output will be much smaller and Perl will parse it
1945425bb815Sopenharmony_ci# just the same.
1946425bb815Sopenharmony_ci# The default value is: YES.
1947425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_PERLMOD is set to YES.
1948425bb815Sopenharmony_ci
1949425bb815Sopenharmony_ciPERLMOD_PRETTY         = YES
1950425bb815Sopenharmony_ci
1951425bb815Sopenharmony_ci# The names of the make variables in the generated doxyrules.make file are
1952425bb815Sopenharmony_ci# prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. This is useful
1953425bb815Sopenharmony_ci# so different doxyrules.make files included by the same Makefile don't
1954425bb815Sopenharmony_ci# overwrite each other's variables.
1955425bb815Sopenharmony_ci# This tag requires that the tag GENERATE_PERLMOD is set to YES.
1956425bb815Sopenharmony_ci
1957425bb815Sopenharmony_ciPERLMOD_MAKEVAR_PREFIX =
1958425bb815Sopenharmony_ci
1959425bb815Sopenharmony_ci#---------------------------------------------------------------------------
1960425bb815Sopenharmony_ci# Configuration options related to the preprocessor
1961425bb815Sopenharmony_ci#---------------------------------------------------------------------------
1962425bb815Sopenharmony_ci
1963425bb815Sopenharmony_ci# If the ENABLE_PREPROCESSING tag is set to YES, doxygen will evaluate all
1964425bb815Sopenharmony_ci# C-preprocessor directives found in the sources and include files.
1965425bb815Sopenharmony_ci# The default value is: YES.
1966425bb815Sopenharmony_ci
1967425bb815Sopenharmony_ciENABLE_PREPROCESSING   = YES
1968425bb815Sopenharmony_ci
1969425bb815Sopenharmony_ci# If the MACRO_EXPANSION tag is set to YES, doxygen will expand all macro names
1970425bb815Sopenharmony_ci# in the source code. If set to NO, only conditional compilation will be
1971425bb815Sopenharmony_ci# performed. Macro expansion can be done in a controlled way by setting
1972425bb815Sopenharmony_ci# EXPAND_ONLY_PREDEF to YES.
1973425bb815Sopenharmony_ci# The default value is: NO.
1974425bb815Sopenharmony_ci# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
1975425bb815Sopenharmony_ci
1976425bb815Sopenharmony_ciMACRO_EXPANSION        = YES
1977425bb815Sopenharmony_ci
1978425bb815Sopenharmony_ci# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES then
1979425bb815Sopenharmony_ci# the macro expansion is limited to the macros specified with the PREDEFINED and
1980425bb815Sopenharmony_ci# EXPAND_AS_DEFINED tags.
1981425bb815Sopenharmony_ci# The default value is: NO.
1982425bb815Sopenharmony_ci# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
1983425bb815Sopenharmony_ci
1984425bb815Sopenharmony_ciEXPAND_ONLY_PREDEF     = YES
1985425bb815Sopenharmony_ci
1986425bb815Sopenharmony_ci# If the SEARCH_INCLUDES tag is set to YES, the include files in the
1987425bb815Sopenharmony_ci# INCLUDE_PATH will be searched if a #include is found.
1988425bb815Sopenharmony_ci# The default value is: YES.
1989425bb815Sopenharmony_ci# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
1990425bb815Sopenharmony_ci
1991425bb815Sopenharmony_ciSEARCH_INCLUDES        = YES
1992425bb815Sopenharmony_ci
1993425bb815Sopenharmony_ci# The INCLUDE_PATH tag can be used to specify one or more directories that
1994425bb815Sopenharmony_ci# contain include files that are not input files but should be processed by the
1995425bb815Sopenharmony_ci# preprocessor.
1996425bb815Sopenharmony_ci# This tag requires that the tag SEARCH_INCLUDES is set to YES.
1997425bb815Sopenharmony_ci
1998425bb815Sopenharmony_ciINCLUDE_PATH           =
1999425bb815Sopenharmony_ci
2000425bb815Sopenharmony_ci# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard
2001425bb815Sopenharmony_ci# patterns (like *.h and *.hpp) to filter out the header-files in the
2002425bb815Sopenharmony_ci# directories. If left blank, the patterns specified with FILE_PATTERNS will be
2003425bb815Sopenharmony_ci# used.
2004425bb815Sopenharmony_ci# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
2005425bb815Sopenharmony_ci
2006425bb815Sopenharmony_ciINCLUDE_FILE_PATTERNS  =
2007425bb815Sopenharmony_ci
2008425bb815Sopenharmony_ci# The PREDEFINED tag can be used to specify one or more macro names that are
2009425bb815Sopenharmony_ci# defined before the preprocessor is started (similar to the -D option of e.g.
2010425bb815Sopenharmony_ci# gcc). The argument of the tag is a list of macros of the form: name or
2011425bb815Sopenharmony_ci# name=definition (no spaces). If the definition and the "=" are omitted, "=1"
2012425bb815Sopenharmony_ci# is assumed. To prevent a macro definition from being undefined via #undef or
2013425bb815Sopenharmony_ci# recursively expanded use the := operator instead of the = operator.
2014425bb815Sopenharmony_ci# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
2015425bb815Sopenharmony_ci
2016425bb815Sopenharmony_ciPREDEFINED             = JERRY_STATIC_ASSERT(x,y)= JERRY_ATTR_FORMAT(x,y,z)=
2017425bb815Sopenharmony_ci
2018425bb815Sopenharmony_ci# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this
2019425bb815Sopenharmony_ci# tag can be used to specify a list of macro names that should be expanded. The
2020425bb815Sopenharmony_ci# macro definition that is found in the sources will be used. Use the PREDEFINED
2021425bb815Sopenharmony_ci# tag if you want to use a different macro definition that overrules the
2022425bb815Sopenharmony_ci# definition found in the source code.
2023425bb815Sopenharmony_ci# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
2024425bb815Sopenharmony_ci
2025425bb815Sopenharmony_ciEXPAND_AS_DEFINED      =
2026425bb815Sopenharmony_ci
2027425bb815Sopenharmony_ci# If the SKIP_FUNCTION_MACROS tag is set to YES then doxygen's preprocessor will
2028425bb815Sopenharmony_ci# remove all references to function-like macros that are alone on a line, have
2029425bb815Sopenharmony_ci# an all uppercase name, and do not end with a semicolon. Such function macros
2030425bb815Sopenharmony_ci# are typically used for boiler-plate code, and will confuse the parser if not
2031425bb815Sopenharmony_ci# removed.
2032425bb815Sopenharmony_ci# The default value is: YES.
2033425bb815Sopenharmony_ci# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
2034425bb815Sopenharmony_ci
2035425bb815Sopenharmony_ciSKIP_FUNCTION_MACROS   = YES
2036425bb815Sopenharmony_ci
2037425bb815Sopenharmony_ci#---------------------------------------------------------------------------
2038425bb815Sopenharmony_ci# Configuration options related to external references
2039425bb815Sopenharmony_ci#---------------------------------------------------------------------------
2040425bb815Sopenharmony_ci
2041425bb815Sopenharmony_ci# The TAGFILES tag can be used to specify one or more tag files. For each tag
2042425bb815Sopenharmony_ci# file the location of the external documentation should be added. The format of
2043425bb815Sopenharmony_ci# a tag file without this location is as follows:
2044425bb815Sopenharmony_ci# TAGFILES = file1 file2 ...
2045425bb815Sopenharmony_ci# Adding location for the tag files is done as follows:
2046425bb815Sopenharmony_ci# TAGFILES = file1=loc1 "file2 = loc2" ...
2047425bb815Sopenharmony_ci# where loc1 and loc2 can be relative or absolute paths or URLs. See the
2048425bb815Sopenharmony_ci# section "Linking to external documentation" for more information about the use
2049425bb815Sopenharmony_ci# of tag files.
2050425bb815Sopenharmony_ci# Note: Each tag file must have a unique name (where the name does NOT include
2051425bb815Sopenharmony_ci# the path). If a tag file is not located in the directory in which doxygen is
2052425bb815Sopenharmony_ci# run, you must also specify the path to the tagfile here.
2053425bb815Sopenharmony_ci
2054425bb815Sopenharmony_ciTAGFILES               =
2055425bb815Sopenharmony_ci
2056425bb815Sopenharmony_ci# When a file name is specified after GENERATE_TAGFILE, doxygen will create a
2057425bb815Sopenharmony_ci# tag file that is based on the input files it reads. See section "Linking to
2058425bb815Sopenharmony_ci# external documentation" for more information about the usage of tag files.
2059425bb815Sopenharmony_ci
2060425bb815Sopenharmony_ciGENERATE_TAGFILE       =
2061425bb815Sopenharmony_ci
2062425bb815Sopenharmony_ci# If the ALLEXTERNALS tag is set to YES, all external class will be listed in
2063425bb815Sopenharmony_ci# the class index. If set to NO, only the inherited external classes will be
2064425bb815Sopenharmony_ci# listed.
2065425bb815Sopenharmony_ci# The default value is: NO.
2066425bb815Sopenharmony_ci
2067425bb815Sopenharmony_ciALLEXTERNALS           = NO
2068425bb815Sopenharmony_ci
2069425bb815Sopenharmony_ci# If the EXTERNAL_GROUPS tag is set to YES, all external groups will be listed
2070425bb815Sopenharmony_ci# in the modules index. If set to NO, only the current project's groups will be
2071425bb815Sopenharmony_ci# listed.
2072425bb815Sopenharmony_ci# The default value is: YES.
2073425bb815Sopenharmony_ci
2074425bb815Sopenharmony_ciEXTERNAL_GROUPS        = YES
2075425bb815Sopenharmony_ci
2076425bb815Sopenharmony_ci# If the EXTERNAL_PAGES tag is set to YES, all external pages will be listed in
2077425bb815Sopenharmony_ci# the related pages index. If set to NO, only the current project's pages will
2078425bb815Sopenharmony_ci# be listed.
2079425bb815Sopenharmony_ci# The default value is: YES.
2080425bb815Sopenharmony_ci
2081425bb815Sopenharmony_ciEXTERNAL_PAGES         = YES
2082425bb815Sopenharmony_ci
2083425bb815Sopenharmony_ci# The PERL_PATH should be the absolute path and name of the perl script
2084425bb815Sopenharmony_ci# interpreter (i.e. the result of 'which perl').
2085425bb815Sopenharmony_ci# The default file (with absolute path) is: /usr/bin/perl.
2086425bb815Sopenharmony_ci
2087425bb815Sopenharmony_ciPERL_PATH              = /usr/bin/perl
2088425bb815Sopenharmony_ci
2089425bb815Sopenharmony_ci#---------------------------------------------------------------------------
2090425bb815Sopenharmony_ci# Configuration options related to the dot tool
2091425bb815Sopenharmony_ci#---------------------------------------------------------------------------
2092425bb815Sopenharmony_ci
2093425bb815Sopenharmony_ci# If the CLASS_DIAGRAMS tag is set to YES, doxygen will generate a class diagram
2094425bb815Sopenharmony_ci# (in HTML and LaTeX) for classes with base or super classes. Setting the tag to
2095425bb815Sopenharmony_ci# NO turns the diagrams off. Note that this option also works with HAVE_DOT
2096425bb815Sopenharmony_ci# disabled, but it is recommended to install and use dot, since it yields more
2097425bb815Sopenharmony_ci# powerful graphs.
2098425bb815Sopenharmony_ci# The default value is: YES.
2099425bb815Sopenharmony_ci
2100425bb815Sopenharmony_ciCLASS_DIAGRAMS         = YES
2101425bb815Sopenharmony_ci
2102425bb815Sopenharmony_ci# You can define message sequence charts within doxygen comments using the \msc
2103425bb815Sopenharmony_ci# command. Doxygen will then run the mscgen tool (see:
2104425bb815Sopenharmony_ci# http://www.mcternan.me.uk/mscgen/)) to produce the chart and insert it in the
2105425bb815Sopenharmony_ci# documentation. The MSCGEN_PATH tag allows you to specify the directory where
2106425bb815Sopenharmony_ci# the mscgen tool resides. If left empty the tool is assumed to be found in the
2107425bb815Sopenharmony_ci# default search path.
2108425bb815Sopenharmony_ci
2109425bb815Sopenharmony_ciMSCGEN_PATH            =
2110425bb815Sopenharmony_ci
2111425bb815Sopenharmony_ci# You can include diagrams made with dia in doxygen documentation. Doxygen will
2112425bb815Sopenharmony_ci# then run dia to produce the diagram and insert it in the documentation. The
2113425bb815Sopenharmony_ci# DIA_PATH tag allows you to specify the directory where the dia binary resides.
2114425bb815Sopenharmony_ci# If left empty dia is assumed to be found in the default search path.
2115425bb815Sopenharmony_ci
2116425bb815Sopenharmony_ciDIA_PATH               =
2117425bb815Sopenharmony_ci
2118425bb815Sopenharmony_ci# If set to YES the inheritance and collaboration graphs will hide inheritance
2119425bb815Sopenharmony_ci# and usage relations if the target is undocumented or is not a class.
2120425bb815Sopenharmony_ci# The default value is: YES.
2121425bb815Sopenharmony_ci
2122425bb815Sopenharmony_ciHIDE_UNDOC_RELATIONS   = YES
2123425bb815Sopenharmony_ci
2124425bb815Sopenharmony_ci# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is
2125425bb815Sopenharmony_ci# available from the path. This tool is part of Graphviz (see:
2126425bb815Sopenharmony_ci# http://www.graphviz.org/), a graph visualization toolkit from AT&T and Lucent
2127425bb815Sopenharmony_ci# Bell Labs. The other options in this section have no effect if this option is
2128425bb815Sopenharmony_ci# set to NO
2129425bb815Sopenharmony_ci# The default value is: YES.
2130425bb815Sopenharmony_ci
2131425bb815Sopenharmony_ciHAVE_DOT               = NO
2132425bb815Sopenharmony_ci
2133425bb815Sopenharmony_ci# The DOT_NUM_THREADS specifies the number of dot invocations doxygen is allowed
2134425bb815Sopenharmony_ci# to run in parallel. When set to 0 doxygen will base this on the number of
2135425bb815Sopenharmony_ci# processors available in the system. You can set it explicitly to a value
2136425bb815Sopenharmony_ci# larger than 0 to get control over the balance between CPU load and processing
2137425bb815Sopenharmony_ci# speed.
2138425bb815Sopenharmony_ci# Minimum value: 0, maximum value: 32, default value: 0.
2139425bb815Sopenharmony_ci# This tag requires that the tag HAVE_DOT is set to YES.
2140425bb815Sopenharmony_ci
2141425bb815Sopenharmony_ciDOT_NUM_THREADS        = 0
2142425bb815Sopenharmony_ci
2143425bb815Sopenharmony_ci# When you want a differently looking font in the dot files that doxygen
2144425bb815Sopenharmony_ci# generates you can specify the font name using DOT_FONTNAME. You need to make
2145425bb815Sopenharmony_ci# sure dot is able to find the font, which can be done by putting it in a
2146425bb815Sopenharmony_ci# standard location or by setting the DOTFONTPATH environment variable or by
2147425bb815Sopenharmony_ci# setting DOT_FONTPATH to the directory containing the font.
2148425bb815Sopenharmony_ci# The default value is: Helvetica.
2149425bb815Sopenharmony_ci# This tag requires that the tag HAVE_DOT is set to YES.
2150425bb815Sopenharmony_ci
2151425bb815Sopenharmony_ciDOT_FONTNAME           = Helvetica
2152425bb815Sopenharmony_ci
2153425bb815Sopenharmony_ci# The DOT_FONTSIZE tag can be used to set the size (in points) of the font of
2154425bb815Sopenharmony_ci# dot graphs.
2155425bb815Sopenharmony_ci# Minimum value: 4, maximum value: 24, default value: 10.
2156425bb815Sopenharmony_ci# This tag requires that the tag HAVE_DOT is set to YES.
2157425bb815Sopenharmony_ci
2158425bb815Sopenharmony_ciDOT_FONTSIZE           = 10
2159425bb815Sopenharmony_ci
2160425bb815Sopenharmony_ci# By default doxygen will tell dot to use the default font as specified with
2161425bb815Sopenharmony_ci# DOT_FONTNAME. If you specify a different font using DOT_FONTNAME you can set
2162425bb815Sopenharmony_ci# the path where dot can find it using this tag.
2163425bb815Sopenharmony_ci# This tag requires that the tag HAVE_DOT is set to YES.
2164425bb815Sopenharmony_ci
2165425bb815Sopenharmony_ciDOT_FONTPATH           =
2166425bb815Sopenharmony_ci
2167425bb815Sopenharmony_ci# If the CLASS_GRAPH tag is set to YES then doxygen will generate a graph for
2168425bb815Sopenharmony_ci# each documented class showing the direct and indirect inheritance relations.
2169425bb815Sopenharmony_ci# Setting this tag to YES will force the CLASS_DIAGRAMS tag to NO.
2170425bb815Sopenharmony_ci# The default value is: YES.
2171425bb815Sopenharmony_ci# This tag requires that the tag HAVE_DOT is set to YES.
2172425bb815Sopenharmony_ci
2173425bb815Sopenharmony_ciCLASS_GRAPH            = YES
2174425bb815Sopenharmony_ci
2175425bb815Sopenharmony_ci# If the COLLABORATION_GRAPH tag is set to YES then doxygen will generate a
2176425bb815Sopenharmony_ci# graph for each documented class showing the direct and indirect implementation
2177425bb815Sopenharmony_ci# dependencies (inheritance, containment, and class references variables) of the
2178425bb815Sopenharmony_ci# class with other documented classes.
2179425bb815Sopenharmony_ci# The default value is: YES.
2180425bb815Sopenharmony_ci# This tag requires that the tag HAVE_DOT is set to YES.
2181425bb815Sopenharmony_ci
2182425bb815Sopenharmony_ciCOLLABORATION_GRAPH    = YES
2183425bb815Sopenharmony_ci
2184425bb815Sopenharmony_ci# If the GROUP_GRAPHS tag is set to YES then doxygen will generate a graph for
2185425bb815Sopenharmony_ci# groups, showing the direct groups dependencies.
2186425bb815Sopenharmony_ci# The default value is: YES.
2187425bb815Sopenharmony_ci# This tag requires that the tag HAVE_DOT is set to YES.
2188425bb815Sopenharmony_ci
2189425bb815Sopenharmony_ciGROUP_GRAPHS           = YES
2190425bb815Sopenharmony_ci
2191425bb815Sopenharmony_ci# If the UML_LOOK tag is set to YES, doxygen will generate inheritance and
2192425bb815Sopenharmony_ci# collaboration diagrams in a style similar to the OMG's Unified Modeling
2193425bb815Sopenharmony_ci# Language.
2194425bb815Sopenharmony_ci# The default value is: NO.
2195425bb815Sopenharmony_ci# This tag requires that the tag HAVE_DOT is set to YES.
2196425bb815Sopenharmony_ci
2197425bb815Sopenharmony_ciUML_LOOK               = NO
2198425bb815Sopenharmony_ci
2199425bb815Sopenharmony_ci# If the UML_LOOK tag is enabled, the fields and methods are shown inside the
2200425bb815Sopenharmony_ci# class node. If there are many fields or methods and many nodes the graph may
2201425bb815Sopenharmony_ci# become too big to be useful. The UML_LIMIT_NUM_FIELDS threshold limits the
2202425bb815Sopenharmony_ci# number of items for each type to make the size more manageable. Set this to 0
2203425bb815Sopenharmony_ci# for no limit. Note that the threshold may be exceeded by 50% before the limit
2204425bb815Sopenharmony_ci# is enforced. So when you set the threshold to 10, up to 15 fields may appear,
2205425bb815Sopenharmony_ci# but if the number exceeds 15, the total amount of fields shown is limited to
2206425bb815Sopenharmony_ci# 10.
2207425bb815Sopenharmony_ci# Minimum value: 0, maximum value: 100, default value: 10.
2208425bb815Sopenharmony_ci# This tag requires that the tag HAVE_DOT is set to YES.
2209425bb815Sopenharmony_ci
2210425bb815Sopenharmony_ciUML_LIMIT_NUM_FIELDS   = 10
2211425bb815Sopenharmony_ci
2212425bb815Sopenharmony_ci# If the TEMPLATE_RELATIONS tag is set to YES then the inheritance and
2213425bb815Sopenharmony_ci# collaboration graphs will show the relations between templates and their
2214425bb815Sopenharmony_ci# instances.
2215425bb815Sopenharmony_ci# The default value is: NO.
2216425bb815Sopenharmony_ci# This tag requires that the tag HAVE_DOT is set to YES.
2217425bb815Sopenharmony_ci
2218425bb815Sopenharmony_ciTEMPLATE_RELATIONS     = NO
2219425bb815Sopenharmony_ci
2220425bb815Sopenharmony_ci# If the INCLUDE_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are set to
2221425bb815Sopenharmony_ci# YES then doxygen will generate a graph for each documented file showing the
2222425bb815Sopenharmony_ci# direct and indirect include dependencies of the file with other documented
2223425bb815Sopenharmony_ci# files.
2224425bb815Sopenharmony_ci# The default value is: YES.
2225425bb815Sopenharmony_ci# This tag requires that the tag HAVE_DOT is set to YES.
2226425bb815Sopenharmony_ci
2227425bb815Sopenharmony_ciINCLUDE_GRAPH          = YES
2228425bb815Sopenharmony_ci
2229425bb815Sopenharmony_ci# If the INCLUDED_BY_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are
2230425bb815Sopenharmony_ci# set to YES then doxygen will generate a graph for each documented file showing
2231425bb815Sopenharmony_ci# the direct and indirect include dependencies of the file with other documented
2232425bb815Sopenharmony_ci# files.
2233425bb815Sopenharmony_ci# The default value is: YES.
2234425bb815Sopenharmony_ci# This tag requires that the tag HAVE_DOT is set to YES.
2235425bb815Sopenharmony_ci
2236425bb815Sopenharmony_ciINCLUDED_BY_GRAPH      = YES
2237425bb815Sopenharmony_ci
2238425bb815Sopenharmony_ci# If the CALL_GRAPH tag is set to YES then doxygen will generate a call
2239425bb815Sopenharmony_ci# dependency graph for every global function or class method.
2240425bb815Sopenharmony_ci#
2241425bb815Sopenharmony_ci# Note that enabling this option will significantly increase the time of a run.
2242425bb815Sopenharmony_ci# So in most cases it will be better to enable call graphs for selected
2243425bb815Sopenharmony_ci# functions only using the \callgraph command.
2244425bb815Sopenharmony_ci# The default value is: NO.
2245425bb815Sopenharmony_ci# This tag requires that the tag HAVE_DOT is set to YES.
2246425bb815Sopenharmony_ci
2247425bb815Sopenharmony_ciCALL_GRAPH             = NO
2248425bb815Sopenharmony_ci
2249425bb815Sopenharmony_ci# If the CALLER_GRAPH tag is set to YES then doxygen will generate a caller
2250425bb815Sopenharmony_ci# dependency graph for every global function or class method.
2251425bb815Sopenharmony_ci#
2252425bb815Sopenharmony_ci# Note that enabling this option will significantly increase the time of a run.
2253425bb815Sopenharmony_ci# So in most cases it will be better to enable caller graphs for selected
2254425bb815Sopenharmony_ci# functions only using the \callergraph command.
2255425bb815Sopenharmony_ci# The default value is: NO.
2256425bb815Sopenharmony_ci# This tag requires that the tag HAVE_DOT is set to YES.
2257425bb815Sopenharmony_ci
2258425bb815Sopenharmony_ciCALLER_GRAPH           = NO
2259425bb815Sopenharmony_ci
2260425bb815Sopenharmony_ci# If the GRAPHICAL_HIERARCHY tag is set to YES then doxygen will graphical
2261425bb815Sopenharmony_ci# hierarchy of all classes instead of a textual one.
2262425bb815Sopenharmony_ci# The default value is: YES.
2263425bb815Sopenharmony_ci# This tag requires that the tag HAVE_DOT is set to YES.
2264425bb815Sopenharmony_ci
2265425bb815Sopenharmony_ciGRAPHICAL_HIERARCHY    = YES
2266425bb815Sopenharmony_ci
2267425bb815Sopenharmony_ci# If the DIRECTORY_GRAPH tag is set to YES then doxygen will show the
2268425bb815Sopenharmony_ci# dependencies a directory has on other directories in a graphical way. The
2269425bb815Sopenharmony_ci# dependency relations are determined by the #include relations between the
2270425bb815Sopenharmony_ci# files in the directories.
2271425bb815Sopenharmony_ci# The default value is: YES.
2272425bb815Sopenharmony_ci# This tag requires that the tag HAVE_DOT is set to YES.
2273425bb815Sopenharmony_ci
2274425bb815Sopenharmony_ciDIRECTORY_GRAPH        = YES
2275425bb815Sopenharmony_ci
2276425bb815Sopenharmony_ci# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images
2277425bb815Sopenharmony_ci# generated by dot.
2278425bb815Sopenharmony_ci# Note: If you choose svg you need to set HTML_FILE_EXTENSION to xhtml in order
2279425bb815Sopenharmony_ci# to make the SVG files visible in IE 9+ (other browsers do not have this
2280425bb815Sopenharmony_ci# requirement).
2281425bb815Sopenharmony_ci# Possible values are: png, png:cairo, png:cairo:cairo, png:cairo:gd, png:gd,
2282425bb815Sopenharmony_ci# png:gd:gd, jpg, jpg:cairo, jpg:cairo:gd, jpg:gd, jpg:gd:gd, gif, gif:cairo,
2283425bb815Sopenharmony_ci# gif:cairo:gd, gif:gd, gif:gd:gd and svg.
2284425bb815Sopenharmony_ci# The default value is: png.
2285425bb815Sopenharmony_ci# This tag requires that the tag HAVE_DOT is set to YES.
2286425bb815Sopenharmony_ci
2287425bb815Sopenharmony_ciDOT_IMAGE_FORMAT       = png
2288425bb815Sopenharmony_ci
2289425bb815Sopenharmony_ci# If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to
2290425bb815Sopenharmony_ci# enable generation of interactive SVG images that allow zooming and panning.
2291425bb815Sopenharmony_ci#
2292425bb815Sopenharmony_ci# Note that this requires a modern browser other than Internet Explorer. Tested
2293425bb815Sopenharmony_ci# and working are Firefox, Chrome, Safari, and Opera.
2294425bb815Sopenharmony_ci# Note: For IE 9+ you need to set HTML_FILE_EXTENSION to xhtml in order to make
2295425bb815Sopenharmony_ci# the SVG files visible. Older versions of IE do not have SVG support.
2296425bb815Sopenharmony_ci# The default value is: NO.
2297425bb815Sopenharmony_ci# This tag requires that the tag HAVE_DOT is set to YES.
2298425bb815Sopenharmony_ci
2299425bb815Sopenharmony_ciINTERACTIVE_SVG        = NO
2300425bb815Sopenharmony_ci
2301425bb815Sopenharmony_ci# The DOT_PATH tag can be used to specify the path where the dot tool can be
2302425bb815Sopenharmony_ci# found. If left blank, it is assumed the dot tool can be found in the path.
2303425bb815Sopenharmony_ci# This tag requires that the tag HAVE_DOT is set to YES.
2304425bb815Sopenharmony_ci
2305425bb815Sopenharmony_ciDOT_PATH               =
2306425bb815Sopenharmony_ci
2307425bb815Sopenharmony_ci# The DOTFILE_DIRS tag can be used to specify one or more directories that
2308425bb815Sopenharmony_ci# contain dot files that are included in the documentation (see the \dotfile
2309425bb815Sopenharmony_ci# command).
2310425bb815Sopenharmony_ci# This tag requires that the tag HAVE_DOT is set to YES.
2311425bb815Sopenharmony_ci
2312425bb815Sopenharmony_ciDOTFILE_DIRS           =
2313425bb815Sopenharmony_ci
2314425bb815Sopenharmony_ci# The MSCFILE_DIRS tag can be used to specify one or more directories that
2315425bb815Sopenharmony_ci# contain msc files that are included in the documentation (see the \mscfile
2316425bb815Sopenharmony_ci# command).
2317425bb815Sopenharmony_ci
2318425bb815Sopenharmony_ciMSCFILE_DIRS           =
2319425bb815Sopenharmony_ci
2320425bb815Sopenharmony_ci# The DIAFILE_DIRS tag can be used to specify one or more directories that
2321425bb815Sopenharmony_ci# contain dia files that are included in the documentation (see the \diafile
2322425bb815Sopenharmony_ci# command).
2323425bb815Sopenharmony_ci
2324425bb815Sopenharmony_ciDIAFILE_DIRS           =
2325425bb815Sopenharmony_ci
2326425bb815Sopenharmony_ci# When using plantuml, the PLANTUML_JAR_PATH tag should be used to specify the
2327425bb815Sopenharmony_ci# path where java can find the plantuml.jar file. If left blank, it is assumed
2328425bb815Sopenharmony_ci# PlantUML is not used or called during a preprocessing step. Doxygen will
2329425bb815Sopenharmony_ci# generate a warning when it encounters a \startuml command in this case and
2330425bb815Sopenharmony_ci# will not generate output for the diagram.
2331425bb815Sopenharmony_ci
2332425bb815Sopenharmony_ci# PLANTUML_JAR_PATH      =
2333425bb815Sopenharmony_ci
2334425bb815Sopenharmony_ci# When using plantuml, the specified paths are searched for files specified by
2335425bb815Sopenharmony_ci# the !include statement in a plantuml block.
2336425bb815Sopenharmony_ci
2337425bb815Sopenharmony_ci# PLANTUML_INCLUDE_PATH  =
2338425bb815Sopenharmony_ci
2339425bb815Sopenharmony_ci# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of nodes
2340425bb815Sopenharmony_ci# that will be shown in the graph. If the number of nodes in a graph becomes
2341425bb815Sopenharmony_ci# larger than this value, doxygen will truncate the graph, which is visualized
2342425bb815Sopenharmony_ci# by representing a node as a red box. Note that doxygen if the number of direct
2343425bb815Sopenharmony_ci# children of the root node in a graph is already larger than
2344425bb815Sopenharmony_ci# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note that
2345425bb815Sopenharmony_ci# the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH.
2346425bb815Sopenharmony_ci# Minimum value: 0, maximum value: 10000, default value: 50.
2347425bb815Sopenharmony_ci# This tag requires that the tag HAVE_DOT is set to YES.
2348425bb815Sopenharmony_ci
2349425bb815Sopenharmony_ciDOT_GRAPH_MAX_NODES    = 50
2350425bb815Sopenharmony_ci
2351425bb815Sopenharmony_ci# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the graphs
2352425bb815Sopenharmony_ci# generated by dot. A depth value of 3 means that only nodes reachable from the
2353425bb815Sopenharmony_ci# root by following a path via at most 3 edges will be shown. Nodes that lay
2354425bb815Sopenharmony_ci# further from the root node will be omitted. Note that setting this option to 1
2355425bb815Sopenharmony_ci# or 2 may greatly reduce the computation time needed for large code bases. Also
2356425bb815Sopenharmony_ci# note that the size of a graph can be further restricted by
2357425bb815Sopenharmony_ci# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction.
2358425bb815Sopenharmony_ci# Minimum value: 0, maximum value: 1000, default value: 0.
2359425bb815Sopenharmony_ci# This tag requires that the tag HAVE_DOT is set to YES.
2360425bb815Sopenharmony_ci
2361425bb815Sopenharmony_ciMAX_DOT_GRAPH_DEPTH    = 0
2362425bb815Sopenharmony_ci
2363425bb815Sopenharmony_ci# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent
2364425bb815Sopenharmony_ci# background. This is disabled by default, because dot on Windows does not seem
2365425bb815Sopenharmony_ci# to support this out of the box.
2366425bb815Sopenharmony_ci#
2367425bb815Sopenharmony_ci# Warning: Depending on the platform used, enabling this option may lead to
2368425bb815Sopenharmony_ci# badly anti-aliased labels on the edges of a graph (i.e. they become hard to
2369425bb815Sopenharmony_ci# read).
2370425bb815Sopenharmony_ci# The default value is: NO.
2371425bb815Sopenharmony_ci# This tag requires that the tag HAVE_DOT is set to YES.
2372425bb815Sopenharmony_ci
2373425bb815Sopenharmony_ciDOT_TRANSPARENT        = NO
2374425bb815Sopenharmony_ci
2375425bb815Sopenharmony_ci# Set the DOT_MULTI_TARGETS tag to YES to allow dot to generate multiple output
2376425bb815Sopenharmony_ci# files in one run (i.e. multiple -o and -T options on the command line). This
2377425bb815Sopenharmony_ci# makes dot run faster, but since only newer versions of dot (>1.8.10) support
2378425bb815Sopenharmony_ci# this, this feature is disabled by default.
2379425bb815Sopenharmony_ci# The default value is: NO.
2380425bb815Sopenharmony_ci# This tag requires that the tag HAVE_DOT is set to YES.
2381425bb815Sopenharmony_ci
2382425bb815Sopenharmony_ciDOT_MULTI_TARGETS      = NO
2383425bb815Sopenharmony_ci
2384425bb815Sopenharmony_ci# If the GENERATE_LEGEND tag is set to YES doxygen will generate a legend page
2385425bb815Sopenharmony_ci# explaining the meaning of the various boxes and arrows in the dot generated
2386425bb815Sopenharmony_ci# graphs.
2387425bb815Sopenharmony_ci# The default value is: YES.
2388425bb815Sopenharmony_ci# This tag requires that the tag HAVE_DOT is set to YES.
2389425bb815Sopenharmony_ci
2390425bb815Sopenharmony_ciGENERATE_LEGEND        = YES
2391425bb815Sopenharmony_ci
2392425bb815Sopenharmony_ci# If the DOT_CLEANUP tag is set to YES, doxygen will remove the intermediate dot
2393425bb815Sopenharmony_ci# files that are used to generate the various graphs.
2394425bb815Sopenharmony_ci# The default value is: YES.
2395425bb815Sopenharmony_ci# This tag requires that the tag HAVE_DOT is set to YES.
2396425bb815Sopenharmony_ci
2397425bb815Sopenharmony_ciDOT_CLEANUP            = YES
2398