1e298e216SJacques Pienaar# Doxyfile 1.8.6 2e298e216SJacques Pienaar 3e298e216SJacques Pienaar# This file describes the settings to be used by the documentation system 4e298e216SJacques Pienaar# doxygen (www.doxygen.org) for a project. 5e298e216SJacques Pienaar# 6e298e216SJacques Pienaar# All text after a double hash (##) is considered a comment and is placed in 7e298e216SJacques Pienaar# front of the TAG it is preceding. 8e298e216SJacques Pienaar# 9e298e216SJacques Pienaar# All text after a single hash (#) is considered a comment and will be ignored. 10e298e216SJacques Pienaar# The format is: 11e298e216SJacques Pienaar# TAG = value [value, ...] 12e298e216SJacques Pienaar# For lists, items can also be appended using: 13e298e216SJacques Pienaar# TAG += value [value, ...] 14e298e216SJacques Pienaar# Values that contain spaces should be placed between quotes (\" \"). 15e298e216SJacques Pienaar 16e298e216SJacques Pienaar#--------------------------------------------------------------------------- 17e298e216SJacques Pienaar# Project related configuration options 18e298e216SJacques Pienaar#--------------------------------------------------------------------------- 19e298e216SJacques Pienaar 20e298e216SJacques Pienaar# This tag specifies the encoding used for all characters in the config file 21e298e216SJacques Pienaar# that follow. The default is UTF-8 which is also the encoding used for all text 22e298e216SJacques Pienaar# before the first occurrence of this tag. Doxygen uses libiconv (or the iconv 23e298e216SJacques Pienaar# built into libc) for the transcoding. See http://www.gnu.org/software/libiconv 24e298e216SJacques Pienaar# for the list of possible encodings. 25e298e216SJacques Pienaar# The default value is: UTF-8. 26e298e216SJacques Pienaar 27e298e216SJacques PienaarDOXYFILE_ENCODING = UTF-8 28e298e216SJacques Pienaar 29e298e216SJacques Pienaar# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by 30e298e216SJacques Pienaar# double-quotes, unless you are using Doxywizard) that should identify the 31e298e216SJacques Pienaar# project for which the documentation is generated. This name is used in the 32e298e216SJacques Pienaar# title of most generated pages and in a few other places. 33e298e216SJacques Pienaar# The default value is: My Project. 34e298e216SJacques Pienaar 35e298e216SJacques PienaarPROJECT_NAME = MLIR 36e298e216SJacques Pienaar 37e298e216SJacques Pienaar# The PROJECT_NUMBER tag can be used to enter a project or revision number. This 38e298e216SJacques Pienaar# could be handy for archiving the generated documentation or if some version 39e298e216SJacques Pienaar# control system is used. 40e298e216SJacques Pienaar 41e298e216SJacques PienaarPROJECT_NUMBER = @PACKAGE_VERSION@ 42e298e216SJacques Pienaar 43e298e216SJacques Pienaar# Using the PROJECT_BRIEF tag one can provide an optional one line description 44e298e216SJacques Pienaar# for a project that appears at the top of each page and should give viewer a 45e298e216SJacques Pienaar# quick idea about the purpose of the project. Keep the description short. 46e298e216SJacques Pienaar 47e298e216SJacques PienaarPROJECT_BRIEF = 48e298e216SJacques Pienaar 49b2f5fd84SKazuaki Ishizaki# With the PROJECT_LOGO tag one can specify a logo or icon that is included in 50e298e216SJacques Pienaar# the documentation. The maximum height of the logo should not exceed 55 pixels 51e298e216SJacques Pienaar# and the maximum width should not exceed 200 pixels. Doxygen will copy the logo 52e298e216SJacques Pienaar# to the output directory. 53e298e216SJacques Pienaar 54e298e216SJacques PienaarPROJECT_LOGO = 55e298e216SJacques Pienaar 56e298e216SJacques Pienaar# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path 57e298e216SJacques Pienaar# into which the generated documentation will be written. If a relative path is 58e298e216SJacques Pienaar# entered, it will be relative to the location where doxygen was started. If 59e298e216SJacques Pienaar# left blank the current directory will be used. 60e298e216SJacques Pienaar 61e298e216SJacques PienaarOUTPUT_DIRECTORY = @abs_top_builddir@/doxygen 62e298e216SJacques Pienaar 63e298e216SJacques Pienaar# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 4096 sub- 64e298e216SJacques Pienaar# directories (in 2 levels) under the output directory of each output format and 65e298e216SJacques Pienaar# will distribute the generated files over these directories. Enabling this 66e298e216SJacques Pienaar# option can be useful when feeding doxygen a huge amount of source files, where 67e298e216SJacques Pienaar# putting all generated files in the same directory would otherwise causes 68e298e216SJacques Pienaar# performance problems for the file system. 69e298e216SJacques Pienaar# The default value is: NO. 70e298e216SJacques Pienaar 71e298e216SJacques PienaarCREATE_SUBDIRS = NO 72e298e216SJacques Pienaar 73e298e216SJacques Pienaar# The OUTPUT_LANGUAGE tag is used to specify the language in which all 74e298e216SJacques Pienaar# documentation generated by doxygen is written. Doxygen will use this 75e298e216SJacques Pienaar# information to generate all constant output in the proper language. 76e298e216SJacques Pienaar# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese, 77e298e216SJacques Pienaar# Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), 78e298e216SJacques Pienaar# Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian, 79e298e216SJacques Pienaar# Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages), 80e298e216SJacques Pienaar# Korean, Korean-en (Korean with English messages), Latvian, Lithuanian, 81e298e216SJacques Pienaar# Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian, 82e298e216SJacques Pienaar# Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish, 83e298e216SJacques Pienaar# Ukrainian and Vietnamese. 84e298e216SJacques Pienaar# The default value is: English. 85e298e216SJacques Pienaar 86e298e216SJacques PienaarOUTPUT_LANGUAGE = English 87e298e216SJacques Pienaar 88e298e216SJacques Pienaar# If the BRIEF_MEMBER_DESC tag is set to YES doxygen will include brief member 89e298e216SJacques Pienaar# descriptions after the members that are listed in the file and class 90e298e216SJacques Pienaar# documentation (similar to Javadoc). Set to NO to disable this. 91e298e216SJacques Pienaar# The default value is: YES. 92e298e216SJacques Pienaar 93e298e216SJacques PienaarBRIEF_MEMBER_DESC = YES 94e298e216SJacques Pienaar 95e298e216SJacques Pienaar# If the REPEAT_BRIEF tag is set to YES doxygen will prepend the brief 96e298e216SJacques Pienaar# description of a member or function before the detailed description 97e298e216SJacques Pienaar# 98e298e216SJacques Pienaar# Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the 99e298e216SJacques Pienaar# brief descriptions will be completely suppressed. 100e298e216SJacques Pienaar# The default value is: YES. 101e298e216SJacques Pienaar 102e298e216SJacques PienaarREPEAT_BRIEF = YES 103e298e216SJacques Pienaar 104e298e216SJacques Pienaar# This tag implements a quasi-intelligent brief description abbreviator that is 105e298e216SJacques Pienaar# used to form the text in various listings. Each string in this list, if found 106e298e216SJacques Pienaar# as the leading text of the brief description, will be stripped from the text 107e298e216SJacques Pienaar# and the result, after processing the whole list, is used as the annotated 108e298e216SJacques Pienaar# text. Otherwise, the brief description is used as-is. If left blank, the 109e298e216SJacques Pienaar# following values are used ($name is automatically replaced with the name of 110e298e216SJacques Pienaar# the entity):The $name class, The $name widget, The $name file, is, provides, 111e298e216SJacques Pienaar# specifies, contains, represents, a, an and the. 112e298e216SJacques Pienaar 113e298e216SJacques PienaarABBREVIATE_BRIEF = 114e298e216SJacques Pienaar 115e298e216SJacques Pienaar# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then 116e298e216SJacques Pienaar# doxygen will generate a detailed section even if there is only a brief 117e298e216SJacques Pienaar# description. 118e298e216SJacques Pienaar# The default value is: NO. 119e298e216SJacques Pienaar 120e298e216SJacques PienaarALWAYS_DETAILED_SEC = NO 121e298e216SJacques Pienaar 122e298e216SJacques Pienaar# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all 123e298e216SJacques Pienaar# inherited members of a class in the documentation of that class as if those 124e298e216SJacques Pienaar# members were ordinary class members. Constructors, destructors and assignment 125e298e216SJacques Pienaar# operators of the base classes will not be shown. 126e298e216SJacques Pienaar# The default value is: NO. 127e298e216SJacques Pienaar 128e298e216SJacques PienaarINLINE_INHERITED_MEMB = NO 129e298e216SJacques Pienaar 130e298e216SJacques Pienaar# If the FULL_PATH_NAMES tag is set to YES doxygen will prepend the full path 131e298e216SJacques Pienaar# before files name in the file list and in the header files. If set to NO the 132e298e216SJacques Pienaar# shortest path that makes the file name unique will be used 133e298e216SJacques Pienaar# The default value is: YES. 134e298e216SJacques Pienaar 135e298e216SJacques PienaarFULL_PATH_NAMES = YES 136e298e216SJacques Pienaar 137e298e216SJacques Pienaar# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path. 138e298e216SJacques Pienaar# Stripping is only done if one of the specified strings matches the left-hand 139e298e216SJacques Pienaar# part of the path. The tag can be used to show relative paths in the file list. 140e298e216SJacques Pienaar# If left blank the directory from which doxygen is run is used as the path to 141e298e216SJacques Pienaar# strip. 142e298e216SJacques Pienaar# 143e298e216SJacques Pienaar# Note that you can specify absolute paths here, but also relative paths, which 144e298e216SJacques Pienaar# will be relative from the directory where doxygen is started. 145e298e216SJacques Pienaar# This tag requires that the tag FULL_PATH_NAMES is set to YES. 146e298e216SJacques Pienaar 147e298e216SJacques PienaarSTRIP_FROM_PATH = @abs_top_srcdir@/.. 148e298e216SJacques Pienaar 149e298e216SJacques Pienaar# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the 150e298e216SJacques Pienaar# path mentioned in the documentation of a class, which tells the reader which 151e298e216SJacques Pienaar# header file to include in order to use a class. If left blank only the name of 152e298e216SJacques Pienaar# the header file containing the class definition is used. Otherwise one should 153e298e216SJacques Pienaar# specify the list of include paths that are normally passed to the compiler 154e298e216SJacques Pienaar# using the -I flag. 155e298e216SJacques Pienaar 156e298e216SJacques PienaarSTRIP_FROM_INC_PATH = @abs_top_srcdir@/../include 157e298e216SJacques PienaarSTRIP_FROM_INC_PATH += @abs_top_srcdir@/../lib 158e298e216SJacques Pienaar 159e298e216SJacques Pienaar# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but 160e298e216SJacques Pienaar# less readable) file names. This can be useful is your file systems doesn't 161e298e216SJacques Pienaar# support long names like on DOS, Mac, or CD-ROM. 162e298e216SJacques Pienaar# The default value is: NO. 163e298e216SJacques Pienaar 164e298e216SJacques PienaarSHORT_NAMES = NO 165e298e216SJacques Pienaar 166e298e216SJacques Pienaar# If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the 167e298e216SJacques Pienaar# first line (until the first dot) of a Javadoc-style comment as the brief 168e298e216SJacques Pienaar# description. If set to NO, the Javadoc-style will behave just like regular Qt- 169e298e216SJacques Pienaar# style comments (thus requiring an explicit @brief command for a brief 170e298e216SJacques Pienaar# description.) 171e298e216SJacques Pienaar# The default value is: NO. 172e298e216SJacques Pienaar 173e298e216SJacques PienaarJAVADOC_AUTOBRIEF = YES 174e298e216SJacques Pienaar 175e298e216SJacques Pienaar# If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first 176e298e216SJacques Pienaar# line (until the first dot) of a Qt-style comment as the brief description. If 177e298e216SJacques Pienaar# set to NO, the Qt-style will behave just like regular Qt-style comments (thus 178e298e216SJacques Pienaar# requiring an explicit \brief command for a brief description.) 179e298e216SJacques Pienaar# The default value is: NO. 180e298e216SJacques Pienaar 181e298e216SJacques PienaarQT_AUTOBRIEF = YES 182e298e216SJacques Pienaar 183e298e216SJacques Pienaar# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a 184e298e216SJacques Pienaar# multi-line C++ special comment block (i.e. a block of //! or /// comments) as 185e298e216SJacques Pienaar# a brief description. This used to be the default behavior. The new default is 186e298e216SJacques Pienaar# to treat a multi-line C++ comment block as a detailed description. Set this 187e298e216SJacques Pienaar# tag to YES if you prefer the old behavior instead. 188e298e216SJacques Pienaar# 189e298e216SJacques Pienaar# Note that setting this tag to YES also means that rational rose comments are 190e298e216SJacques Pienaar# not recognized any more. 191e298e216SJacques Pienaar# The default value is: NO. 192e298e216SJacques Pienaar 193e298e216SJacques PienaarMULTILINE_CPP_IS_BRIEF = NO 194e298e216SJacques Pienaar 195e298e216SJacques Pienaar# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the 196e298e216SJacques Pienaar# documentation from any documented member that it re-implements. 197e298e216SJacques Pienaar# The default value is: YES. 198e298e216SJacques Pienaar 199e298e216SJacques PienaarINHERIT_DOCS = YES 200e298e216SJacques Pienaar 201e298e216SJacques Pienaar# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce a 202e298e216SJacques Pienaar# new page for each member. If set to NO, the documentation of a member will be 203e298e216SJacques Pienaar# part of the file/class/namespace that contains it. 204e298e216SJacques Pienaar# The default value is: NO. 205e298e216SJacques Pienaar 206e298e216SJacques PienaarSEPARATE_MEMBER_PAGES = NO 207e298e216SJacques Pienaar 208e298e216SJacques Pienaar# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen 209e298e216SJacques Pienaar# uses this value to replace tabs by spaces in code fragments. 210e298e216SJacques Pienaar# Minimum value: 1, maximum value: 16, default value: 4. 211e298e216SJacques Pienaar 212e298e216SJacques PienaarTAB_SIZE = 2 213e298e216SJacques Pienaar 214e298e216SJacques Pienaar# This tag can be used to specify a number of aliases that act as commands in 215e298e216SJacques Pienaar# the documentation. An alias has the form: 216e298e216SJacques Pienaar# name=value 217e298e216SJacques Pienaar# For example adding 218e298e216SJacques Pienaar# "sideeffect=@par Side Effects:\n" 219e298e216SJacques Pienaar# will allow you to put the command \sideeffect (or @sideeffect) in the 220e298e216SJacques Pienaar# documentation, which will result in a user-defined paragraph with heading 221e298e216SJacques Pienaar# "Side Effects:". You can put \n's in the value part of an alias to insert 222e298e216SJacques Pienaar# newlines. 223e298e216SJacques Pienaar 224e298e216SJacques PienaarALIASES = 225e298e216SJacques Pienaar 226e298e216SJacques Pienaar# This tag can be used to specify a number of word-keyword mappings (TCL only). 227e298e216SJacques Pienaar# A mapping has the form "name=value". For example adding "class=itcl::class" 228e298e216SJacques Pienaar# will allow you to use the command class in the itcl::class meaning. 229e298e216SJacques Pienaar 230e298e216SJacques PienaarTCL_SUBST = 231e298e216SJacques Pienaar 232e298e216SJacques Pienaar# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources 233e298e216SJacques Pienaar# only. Doxygen will then generate output that is more tailored for C. For 234e298e216SJacques Pienaar# instance, some of the names that are used will be different. The list of all 235e298e216SJacques Pienaar# members will be omitted, etc. 236e298e216SJacques Pienaar# The default value is: NO. 237e298e216SJacques Pienaar 238e298e216SJacques PienaarOPTIMIZE_OUTPUT_FOR_C = NO 239e298e216SJacques Pienaar 240e298e216SJacques Pienaar# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or 241e298e216SJacques Pienaar# Python sources only. Doxygen will then generate output that is more tailored 242e298e216SJacques Pienaar# for that language. For instance, namespaces will be presented as packages, 243e298e216SJacques Pienaar# qualified scopes will look different, etc. 244e298e216SJacques Pienaar# The default value is: NO. 245e298e216SJacques Pienaar 246e298e216SJacques PienaarOPTIMIZE_OUTPUT_JAVA = NO 247e298e216SJacques Pienaar 248e298e216SJacques Pienaar# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran 249e298e216SJacques Pienaar# sources. Doxygen will then generate output that is tailored for Fortran. 250e298e216SJacques Pienaar# The default value is: NO. 251e298e216SJacques Pienaar 252e298e216SJacques PienaarOPTIMIZE_FOR_FORTRAN = NO 253e298e216SJacques Pienaar 254e298e216SJacques Pienaar# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL 255e298e216SJacques Pienaar# sources. Doxygen will then generate output that is tailored for VHDL. 256e298e216SJacques Pienaar# The default value is: NO. 257e298e216SJacques Pienaar 258e298e216SJacques PienaarOPTIMIZE_OUTPUT_VHDL = NO 259e298e216SJacques Pienaar 260e298e216SJacques Pienaar# Doxygen selects the parser to use depending on the extension of the files it 261e298e216SJacques Pienaar# parses. With this tag you can assign which parser to use for a given 262e298e216SJacques Pienaar# extension. Doxygen has a built-in mapping, but you can override or extend it 263e298e216SJacques Pienaar# using this tag. The format is ext=language, where ext is a file extension, and 264e298e216SJacques Pienaar# language is one of the parsers supported by doxygen: IDL, Java, Javascript, 265e298e216SJacques Pienaar# C#, C, C++, D, PHP, Objective-C, Python, Fortran, VHDL. For instance to make 266e298e216SJacques Pienaar# doxygen treat .inc files as Fortran files (default is PHP), and .f files as C 267e298e216SJacques Pienaar# (default is Fortran), use: inc=Fortran f=C. 268e298e216SJacques Pienaar# 269e298e216SJacques Pienaar# Note For files without extension you can use no_extension as a placeholder. 270e298e216SJacques Pienaar# 271e298e216SJacques Pienaar# Note that for custom extensions you also need to set FILE_PATTERNS otherwise 272e298e216SJacques Pienaar# the files are not read by doxygen. 273e298e216SJacques Pienaar 274e298e216SJacques PienaarEXTENSION_MAPPING = 275e298e216SJacques Pienaar 276e298e216SJacques Pienaar# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments 277e298e216SJacques Pienaar# according to the Markdown format, which allows for more readable 278e298e216SJacques Pienaar# documentation. See http://daringfireball.net/projects/markdown/ for details. 279e298e216SJacques Pienaar# The output of markdown processing is further processed by doxygen, so you can 280e298e216SJacques Pienaar# mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in 281e298e216SJacques Pienaar# case of backward compatibilities issues. 282e298e216SJacques Pienaar# The default value is: YES. 283e298e216SJacques Pienaar 284e298e216SJacques PienaarMARKDOWN_SUPPORT = YES 285e298e216SJacques Pienaar 286e298e216SJacques Pienaar# When enabled doxygen tries to link words that correspond to documented 287e298e216SJacques Pienaar# classes, or namespaces to their corresponding documentation. Such a link can 288e298e216SJacques Pienaar# be prevented in individual cases by putting a % sign in front of the word 289e298e216SJacques Pienaar# or globally by setting AUTOLINK_SUPPORT to NO. 290e298e216SJacques Pienaar# The default value is: YES. 291e298e216SJacques Pienaar 292e298e216SJacques PienaarAUTOLINK_SUPPORT = YES 293e298e216SJacques Pienaar 294e298e216SJacques Pienaar# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want 295e298e216SJacques Pienaar# to include (a tag file for) the STL sources as input, then you should set this 296e298e216SJacques Pienaar# tag to YES in order to let doxygen match functions declarations and 297e298e216SJacques Pienaar# definitions whose arguments contain STL classes (e.g. func(std::string); 298e298e216SJacques Pienaar# versus func(std::string) {}). This also make the inheritance and collaboration 299e298e216SJacques Pienaar# diagrams that involve STL classes more complete and accurate. 300e298e216SJacques Pienaar# The default value is: NO. 301e298e216SJacques Pienaar 302e298e216SJacques PienaarBUILTIN_STL_SUPPORT = NO 303e298e216SJacques Pienaar 304e298e216SJacques Pienaar# If you use Microsoft's C++/CLI language, you should set this option to YES to 305e298e216SJacques Pienaar# enable parsing support. 306e298e216SJacques Pienaar# The default value is: NO. 307e298e216SJacques Pienaar 308e298e216SJacques PienaarCPP_CLI_SUPPORT = NO 309e298e216SJacques Pienaar 310e298e216SJacques Pienaar# Set the SIP_SUPPORT tag to YES if your project consists of sip (see: 311e298e216SJacques Pienaar# http://www.riverbankcomputing.co.uk/software/sip/intro) sources only. Doxygen 312e298e216SJacques Pienaar# will parse them like normal C++ but will assume all classes use public instead 313e298e216SJacques Pienaar# of private inheritance when no explicit protection keyword is present. 314e298e216SJacques Pienaar# The default value is: NO. 315e298e216SJacques Pienaar 316e298e216SJacques PienaarSIP_SUPPORT = NO 317e298e216SJacques Pienaar 318e298e216SJacques Pienaar# For Microsoft's IDL there are propget and propput attributes to indicate 319e298e216SJacques Pienaar# getter and setter methods for a property. Setting this option to YES will make 320e298e216SJacques Pienaar# doxygen to replace the get and set methods by a property in the documentation. 321e298e216SJacques Pienaar# This will only work if the methods are indeed getting or setting a simple 322e298e216SJacques Pienaar# type. If this is not the case, or you want to show the methods anyway, you 323e298e216SJacques Pienaar# should set this option to NO. 324e298e216SJacques Pienaar# The default value is: YES. 325e298e216SJacques Pienaar 326e298e216SJacques PienaarIDL_PROPERTY_SUPPORT = YES 327e298e216SJacques Pienaar 328e298e216SJacques Pienaar# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC 329e298e216SJacques Pienaar# tag is set to YES, then doxygen will reuse the documentation of the first 330e298e216SJacques Pienaar# member in the group (if any) for the other members of the group. By default 331e298e216SJacques Pienaar# all members of a group must be documented explicitly. 332e298e216SJacques Pienaar# The default value is: NO. 333e298e216SJacques Pienaar 334e298e216SJacques PienaarDISTRIBUTE_GROUP_DOC = NO 335e298e216SJacques Pienaar 336e298e216SJacques Pienaar# Set the SUBGROUPING tag to YES to allow class member groups of the same type 337e298e216SJacques Pienaar# (for instance a group of public functions) to be put as a subgroup of that 338e298e216SJacques Pienaar# type (e.g. under the Public Functions section). Set it to NO to prevent 339e298e216SJacques Pienaar# subgrouping. Alternatively, this can be done per class using the 340e298e216SJacques Pienaar# \nosubgrouping command. 341e298e216SJacques Pienaar# The default value is: YES. 342e298e216SJacques Pienaar 343e298e216SJacques PienaarSUBGROUPING = YES 344e298e216SJacques Pienaar 345e298e216SJacques Pienaar# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions 346e298e216SJacques Pienaar# are shown inside the group in which they are included (e.g. using \ingroup) 347e298e216SJacques Pienaar# instead of on a separate page (for HTML and Man pages) or section (for LaTeX 348e298e216SJacques Pienaar# and RTF). 349e298e216SJacques Pienaar# 350e298e216SJacques Pienaar# Note that this feature does not work in combination with 351e298e216SJacques Pienaar# SEPARATE_MEMBER_PAGES. 352e298e216SJacques Pienaar# The default value is: NO. 353e298e216SJacques Pienaar 354e298e216SJacques PienaarINLINE_GROUPED_CLASSES = NO 355e298e216SJacques Pienaar 356e298e216SJacques Pienaar# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions 357e298e216SJacques Pienaar# with only public data fields or simple typedef fields will be shown inline in 358e298e216SJacques Pienaar# the documentation of the scope in which they are defined (i.e. file, 359e298e216SJacques Pienaar# namespace, or group documentation), provided this scope is documented. If set 360e298e216SJacques Pienaar# to NO, structs, classes, and unions are shown on a separate page (for HTML and 361e298e216SJacques Pienaar# Man pages) or section (for LaTeX and RTF). 362e298e216SJacques Pienaar# The default value is: NO. 363e298e216SJacques Pienaar 364e298e216SJacques PienaarINLINE_SIMPLE_STRUCTS = NO 365e298e216SJacques Pienaar 366e298e216SJacques Pienaar# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or 367e298e216SJacques Pienaar# enum is documented as struct, union, or enum with the name of the typedef. So 368e298e216SJacques Pienaar# typedef struct TypeS {} TypeT, will appear in the documentation as a struct 369e298e216SJacques Pienaar# with name TypeT. When disabled the typedef will appear as a member of a file, 370e298e216SJacques Pienaar# namespace, or class. And the struct will be named TypeS. This can typically be 371e298e216SJacques Pienaar# useful for C code in case the coding convention dictates that all compound 372e298e216SJacques Pienaar# types are typedef'ed and only the typedef is referenced, never the tag name. 373e298e216SJacques Pienaar# The default value is: NO. 374e298e216SJacques Pienaar 375e298e216SJacques PienaarTYPEDEF_HIDES_STRUCT = NO 376e298e216SJacques Pienaar 377e298e216SJacques Pienaar# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This 378e298e216SJacques Pienaar# cache is used to resolve symbols given their name and scope. Since this can be 379e298e216SJacques Pienaar# an expensive process and often the same symbol appears multiple times in the 380e298e216SJacques Pienaar# code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small 381e298e216SJacques Pienaar# doxygen will become slower. If the cache is too large, memory is wasted. The 382e298e216SJacques Pienaar# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range 383e298e216SJacques Pienaar# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536 384e298e216SJacques Pienaar# symbols. At the end of a run doxygen will report the cache usage and suggest 385e298e216SJacques Pienaar# the optimal cache size from a speed point of view. 386e298e216SJacques Pienaar# Minimum value: 0, maximum value: 9, default value: 0. 387e298e216SJacques Pienaar 388e298e216SJacques PienaarLOOKUP_CACHE_SIZE = 4 389e298e216SJacques Pienaar 390e298e216SJacques Pienaar#--------------------------------------------------------------------------- 391e298e216SJacques Pienaar# Build related configuration options 392e298e216SJacques Pienaar#--------------------------------------------------------------------------- 393e298e216SJacques Pienaar 394e298e216SJacques Pienaar# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in 395e298e216SJacques Pienaar# documentation are documented, even if no documentation was available. Private 396e298e216SJacques Pienaar# class members and static file members will be hidden unless the 397e298e216SJacques Pienaar# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES. 398e298e216SJacques Pienaar# Note: This will also disable the warnings about undocumented members that are 399e298e216SJacques Pienaar# normally produced when WARNINGS is set to YES. 400e298e216SJacques Pienaar# The default value is: NO. 401e298e216SJacques Pienaar 402e298e216SJacques PienaarEXTRACT_ALL = YES 403e298e216SJacques Pienaar 404e298e216SJacques Pienaar# If the EXTRACT_PRIVATE tag is set to YES all private members of a class will 405e298e216SJacques Pienaar# be included in the documentation. 406e298e216SJacques Pienaar# The default value is: NO. 407e298e216SJacques Pienaar 408e298e216SJacques PienaarEXTRACT_PRIVATE = NO 409e298e216SJacques Pienaar 410e298e216SJacques Pienaar# If the EXTRACT_PACKAGE tag is set to YES all members with package or internal 411e298e216SJacques Pienaar# scope will be included in the documentation. 412e298e216SJacques Pienaar# The default value is: NO. 413e298e216SJacques Pienaar 414e298e216SJacques PienaarEXTRACT_PACKAGE = NO 415e298e216SJacques Pienaar 416e298e216SJacques Pienaar# If the EXTRACT_STATIC tag is set to YES all static members of a file will be 417e298e216SJacques Pienaar# included in the documentation. 418e298e216SJacques Pienaar# The default value is: NO. 419e298e216SJacques Pienaar 420e298e216SJacques PienaarEXTRACT_STATIC = YES 421e298e216SJacques Pienaar 422e298e216SJacques Pienaar# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) defined 423e298e216SJacques Pienaar# locally in source files will be included in the documentation. If set to NO 424e298e216SJacques Pienaar# only classes defined in header files are included. Does not have any effect 425e298e216SJacques Pienaar# for Java sources. 426e298e216SJacques Pienaar# The default value is: YES. 427e298e216SJacques Pienaar 428e298e216SJacques PienaarEXTRACT_LOCAL_CLASSES = YES 429e298e216SJacques Pienaar 430e298e216SJacques Pienaar# This flag is only useful for Objective-C code. When set to YES local methods, 431e298e216SJacques Pienaar# which are defined in the implementation section but not in the interface are 432e298e216SJacques Pienaar# included in the documentation. If set to NO only methods in the interface are 433e298e216SJacques Pienaar# included. 434e298e216SJacques Pienaar# The default value is: NO. 435e298e216SJacques Pienaar 436e298e216SJacques PienaarEXTRACT_LOCAL_METHODS = NO 437e298e216SJacques Pienaar 438e298e216SJacques Pienaar# If this flag is set to YES, the members of anonymous namespaces will be 439e298e216SJacques Pienaar# extracted and appear in the documentation as a namespace called 440e298e216SJacques Pienaar# 'anonymous_namespace{file}', where file will be replaced with the base name of 441e298e216SJacques Pienaar# the file that contains the anonymous namespace. By default anonymous namespace 442e298e216SJacques Pienaar# are hidden. 443e298e216SJacques Pienaar# The default value is: NO. 444e298e216SJacques Pienaar 445e298e216SJacques PienaarEXTRACT_ANON_NSPACES = NO 446e298e216SJacques Pienaar 447e298e216SJacques Pienaar# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all 448e298e216SJacques Pienaar# undocumented members inside documented classes or files. If set to NO these 449e298e216SJacques Pienaar# members will be included in the various overviews, but no documentation 450e298e216SJacques Pienaar# section is generated. This option has no effect if EXTRACT_ALL is enabled. 451e298e216SJacques Pienaar# The default value is: NO. 452e298e216SJacques Pienaar 453e298e216SJacques PienaarHIDE_UNDOC_MEMBERS = NO 454e298e216SJacques Pienaar 455e298e216SJacques Pienaar# If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all 456e298e216SJacques Pienaar# undocumented classes that are normally visible in the class hierarchy. If set 457e298e216SJacques Pienaar# to NO these classes will be included in the various overviews. This option has 458e298e216SJacques Pienaar# no effect if EXTRACT_ALL is enabled. 459e298e216SJacques Pienaar# The default value is: NO. 460e298e216SJacques Pienaar 461e298e216SJacques PienaarHIDE_UNDOC_CLASSES = NO 462e298e216SJacques Pienaar 463e298e216SJacques Pienaar# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend 464e298e216SJacques Pienaar# (class|struct|union) declarations. If set to NO these declarations will be 465e298e216SJacques Pienaar# included in the documentation. 466e298e216SJacques Pienaar# The default value is: NO. 467e298e216SJacques Pienaar 468e298e216SJacques PienaarHIDE_FRIEND_COMPOUNDS = NO 469e298e216SJacques Pienaar 470e298e216SJacques Pienaar# If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any 471e298e216SJacques Pienaar# documentation blocks found inside the body of a function. If set to NO these 472e298e216SJacques Pienaar# blocks will be appended to the function's detailed documentation block. 473e298e216SJacques Pienaar# The default value is: NO. 474e298e216SJacques Pienaar 475e298e216SJacques PienaarHIDE_IN_BODY_DOCS = NO 476e298e216SJacques Pienaar 477e298e216SJacques Pienaar# The INTERNAL_DOCS tag determines if documentation that is typed after a 478e298e216SJacques Pienaar# \internal command is included. If the tag is set to NO then the documentation 479e298e216SJacques Pienaar# will be excluded. Set it to YES to include the internal documentation. 480e298e216SJacques Pienaar# The default value is: NO. 481e298e216SJacques Pienaar 482e298e216SJacques PienaarINTERNAL_DOCS = NO 483e298e216SJacques Pienaar 484e298e216SJacques Pienaar# If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file 485e298e216SJacques Pienaar# names in lower-case letters. If set to YES upper-case letters are also 486e298e216SJacques Pienaar# allowed. This is useful if you have classes or files whose names only differ 487e298e216SJacques Pienaar# in case and if your file system supports case sensitive file names. Windows 488e298e216SJacques Pienaar# and Mac users are advised to set this option to NO. 489e298e216SJacques Pienaar# The default value is: system dependent. 490e298e216SJacques Pienaar 491e298e216SJacques PienaarCASE_SENSE_NAMES = YES 492e298e216SJacques Pienaar 493e298e216SJacques Pienaar# If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with 494e298e216SJacques Pienaar# their full class and namespace scopes in the documentation. If set to YES the 495e298e216SJacques Pienaar# scope will be hidden. 496e298e216SJacques Pienaar# The default value is: NO. 497e298e216SJacques Pienaar 498e298e216SJacques PienaarHIDE_SCOPE_NAMES = NO 499e298e216SJacques Pienaar 500e298e216SJacques Pienaar# If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of 501e298e216SJacques Pienaar# the files that are included by a file in the documentation of that file. 502e298e216SJacques Pienaar# The default value is: YES. 503e298e216SJacques Pienaar 504e298e216SJacques PienaarSHOW_INCLUDE_FILES = YES 505e298e216SJacques Pienaar 506e298e216SJacques Pienaar# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each 507e298e216SJacques Pienaar# grouped member an include statement to the documentation, telling the reader 508e298e216SJacques Pienaar# which file to include in order to use the member. 509e298e216SJacques Pienaar# The default value is: NO. 510e298e216SJacques Pienaar 511e298e216SJacques PienaarSHOW_GROUPED_MEMB_INC = NO 512e298e216SJacques Pienaar 513e298e216SJacques Pienaar# If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include 514e298e216SJacques Pienaar# files with double quotes in the documentation rather than with sharp brackets. 515e298e216SJacques Pienaar# The default value is: NO. 516e298e216SJacques Pienaar 517e298e216SJacques PienaarFORCE_LOCAL_INCLUDES = YES 518e298e216SJacques Pienaar 519e298e216SJacques Pienaar# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the 520e298e216SJacques Pienaar# documentation for inline members. 521e298e216SJacques Pienaar# The default value is: YES. 522e298e216SJacques Pienaar 523e298e216SJacques PienaarINLINE_INFO = YES 524e298e216SJacques Pienaar 525e298e216SJacques Pienaar# If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the 526e298e216SJacques Pienaar# (detailed) documentation of file and class members alphabetically by member 527e298e216SJacques Pienaar# name. If set to NO the members will appear in declaration order. 528e298e216SJacques Pienaar# The default value is: YES. 529e298e216SJacques Pienaar 530e298e216SJacques PienaarSORT_MEMBER_DOCS = YES 531e298e216SJacques Pienaar 532e298e216SJacques Pienaar# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief 533e298e216SJacques Pienaar# descriptions of file, namespace and class members alphabetically by member 534e298e216SJacques Pienaar# name. If set to NO the members will appear in declaration order. Note that 535e298e216SJacques Pienaar# this will also influence the order of the classes in the class list. 536e298e216SJacques Pienaar# The default value is: NO. 537e298e216SJacques Pienaar 538e298e216SJacques PienaarSORT_BRIEF_DOCS = NO 539e298e216SJacques Pienaar 540e298e216SJacques Pienaar# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the 541e298e216SJacques Pienaar# (brief and detailed) documentation of class members so that constructors and 542e298e216SJacques Pienaar# destructors are listed first. If set to NO the constructors will appear in the 543e298e216SJacques Pienaar# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS. 544e298e216SJacques Pienaar# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief 545e298e216SJacques Pienaar# member documentation. 546e298e216SJacques Pienaar# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting 547e298e216SJacques Pienaar# detailed member documentation. 548e298e216SJacques Pienaar# The default value is: NO. 549e298e216SJacques Pienaar 550e298e216SJacques PienaarSORT_MEMBERS_CTORS_1ST = NO 551e298e216SJacques Pienaar 552e298e216SJacques Pienaar# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy 553e298e216SJacques Pienaar# of group names into alphabetical order. If set to NO the group names will 554e298e216SJacques Pienaar# appear in their defined order. 555e298e216SJacques Pienaar# The default value is: NO. 556e298e216SJacques Pienaar 557e298e216SJacques PienaarSORT_GROUP_NAMES = NO 558e298e216SJacques Pienaar 559e298e216SJacques Pienaar# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by 560e298e216SJacques Pienaar# fully-qualified names, including namespaces. If set to NO, the class list will 561e298e216SJacques Pienaar# be sorted only by class name, not including the namespace part. 562e298e216SJacques Pienaar# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. 563e298e216SJacques Pienaar# Note: This option applies only to the class list, not to the alphabetical 564e298e216SJacques Pienaar# list. 565e298e216SJacques Pienaar# The default value is: NO. 566e298e216SJacques Pienaar 567e298e216SJacques PienaarSORT_BY_SCOPE_NAME = NO 568e298e216SJacques Pienaar 569e298e216SJacques Pienaar# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper 570e298e216SJacques Pienaar# type resolution of all parameters of a function it will reject a match between 571e298e216SJacques Pienaar# the prototype and the implementation of a member function even if there is 572e298e216SJacques Pienaar# only one candidate or it is obvious which candidate to choose by doing a 573e298e216SJacques Pienaar# simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still 574e298e216SJacques Pienaar# accept a match between prototype and implementation in such cases. 575e298e216SJacques Pienaar# The default value is: NO. 576e298e216SJacques Pienaar 577e298e216SJacques PienaarSTRICT_PROTO_MATCHING = NO 578e298e216SJacques Pienaar 579e298e216SJacques Pienaar# The GENERATE_TODOLIST tag can be used to enable ( YES) or disable ( NO) the 580e298e216SJacques Pienaar# todo list. This list is created by putting \todo commands in the 581e298e216SJacques Pienaar# documentation. 582e298e216SJacques Pienaar# The default value is: YES. 583e298e216SJacques Pienaar 584e298e216SJacques PienaarGENERATE_TODOLIST = YES 585e298e216SJacques Pienaar 586e298e216SJacques Pienaar# The GENERATE_TESTLIST tag can be used to enable ( YES) or disable ( NO) the 587e298e216SJacques Pienaar# test list. This list is created by putting \test commands in the 588e298e216SJacques Pienaar# documentation. 589e298e216SJacques Pienaar# The default value is: YES. 590e298e216SJacques Pienaar 591e298e216SJacques PienaarGENERATE_TESTLIST = YES 592e298e216SJacques Pienaar 593e298e216SJacques Pienaar# The GENERATE_BUGLIST tag can be used to enable ( YES) or disable ( NO) the bug 594e298e216SJacques Pienaar# list. This list is created by putting \bug commands in the documentation. 595e298e216SJacques Pienaar# The default value is: YES. 596e298e216SJacques Pienaar 597e298e216SJacques PienaarGENERATE_BUGLIST = YES 598e298e216SJacques Pienaar 599e298e216SJacques Pienaar# The GENERATE_DEPRECATEDLIST tag can be used to enable ( YES) or disable ( NO) 600e298e216SJacques Pienaar# the deprecated list. This list is created by putting \deprecated commands in 601e298e216SJacques Pienaar# the documentation. 602e298e216SJacques Pienaar# The default value is: YES. 603e298e216SJacques Pienaar 604e298e216SJacques PienaarGENERATE_DEPRECATEDLIST= YES 605e298e216SJacques Pienaar 606e298e216SJacques Pienaar# The ENABLED_SECTIONS tag can be used to enable conditional documentation 607e298e216SJacques Pienaar# sections, marked by \if <section_label> ... \endif and \cond <section_label> 608e298e216SJacques Pienaar# ... \endcond blocks. 609e298e216SJacques Pienaar 610e298e216SJacques PienaarENABLED_SECTIONS = 611e298e216SJacques Pienaar 612e298e216SJacques Pienaar# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the 613e298e216SJacques Pienaar# initial value of a variable or macro / define can have for it to appear in the 614e298e216SJacques Pienaar# documentation. If the initializer consists of more lines than specified here 615e298e216SJacques Pienaar# it will be hidden. Use a value of 0 to hide initializers completely. The 616e298e216SJacques Pienaar# appearance of the value of individual variables and macros / defines can be 617e298e216SJacques Pienaar# controlled using \showinitializer or \hideinitializer command in the 618e298e216SJacques Pienaar# documentation regardless of this setting. 619e298e216SJacques Pienaar# Minimum value: 0, maximum value: 10000, default value: 30. 620e298e216SJacques Pienaar 621e298e216SJacques PienaarMAX_INITIALIZER_LINES = 30 622e298e216SJacques Pienaar 623e298e216SJacques Pienaar# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at 624e298e216SJacques Pienaar# the bottom of the documentation of classes and structs. If set to YES the list 625e298e216SJacques Pienaar# will mention the files that were used to generate the documentation. 626e298e216SJacques Pienaar# The default value is: YES. 627e298e216SJacques Pienaar 628e298e216SJacques PienaarSHOW_USED_FILES = YES 629e298e216SJacques Pienaar 630e298e216SJacques Pienaar# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This 631e298e216SJacques Pienaar# will remove the Files entry from the Quick Index and from the Folder Tree View 632e298e216SJacques Pienaar# (if specified). 633e298e216SJacques Pienaar# The default value is: YES. 634e298e216SJacques Pienaar 635e298e216SJacques PienaarSHOW_FILES = YES 636e298e216SJacques Pienaar 637e298e216SJacques Pienaar# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces 638e298e216SJacques Pienaar# page. This will remove the Namespaces entry from the Quick Index and from the 639e298e216SJacques Pienaar# Folder Tree View (if specified). 640e298e216SJacques Pienaar# The default value is: YES. 641e298e216SJacques Pienaar 642e298e216SJacques PienaarSHOW_NAMESPACES = YES 643e298e216SJacques Pienaar 644e298e216SJacques Pienaar# The FILE_VERSION_FILTER tag can be used to specify a program or script that 645e298e216SJacques Pienaar# doxygen should invoke to get the current version for each file (typically from 646e298e216SJacques Pienaar# the version control system). Doxygen will invoke the program by executing (via 647e298e216SJacques Pienaar# popen()) the command command input-file, where command is the value of the 648e298e216SJacques Pienaar# FILE_VERSION_FILTER tag, and input-file is the name of an input file provided 649e298e216SJacques Pienaar# by doxygen. Whatever the program writes to standard output is used as the file 650e298e216SJacques Pienaar# version. For an example see the documentation. 651e298e216SJacques Pienaar 652e298e216SJacques PienaarFILE_VERSION_FILTER = 653e298e216SJacques Pienaar 654e298e216SJacques Pienaar# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed 655e298e216SJacques Pienaar# by doxygen. The layout file controls the global structure of the generated 656e298e216SJacques Pienaar# output files in an output format independent way. To create the layout file 657e298e216SJacques Pienaar# that represents doxygen's defaults, run doxygen with the -l option. You can 658e298e216SJacques Pienaar# optionally specify a file name after the option, if omitted DoxygenLayout.xml 659e298e216SJacques Pienaar# will be used as the name of the layout file. 660e298e216SJacques Pienaar# 661e298e216SJacques Pienaar# Note that if you run doxygen from a directory containing a file called 662e298e216SJacques Pienaar# DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE 663e298e216SJacques Pienaar# tag is left empty. 664e298e216SJacques Pienaar 665e298e216SJacques PienaarLAYOUT_FILE = 666e298e216SJacques Pienaar 667e298e216SJacques Pienaar# The CITE_BIB_FILES tag can be used to specify one or more bib files containing 668e298e216SJacques Pienaar# the reference definitions. This must be a list of .bib files. The .bib 669e298e216SJacques Pienaar# extension is automatically appended if omitted. This requires the bibtex tool 670e298e216SJacques Pienaar# to be installed. See also http://en.wikipedia.org/wiki/BibTeX for more info. 671e298e216SJacques Pienaar# For LaTeX the style of the bibliography can be controlled using 672e298e216SJacques Pienaar# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the 673e298e216SJacques Pienaar# search path. Do not use file names with spaces, bibtex cannot handle them. See 674e298e216SJacques Pienaar# also \cite for info how to create references. 675e298e216SJacques Pienaar 676e298e216SJacques PienaarCITE_BIB_FILES = 677e298e216SJacques Pienaar 678e298e216SJacques Pienaar#--------------------------------------------------------------------------- 679e298e216SJacques Pienaar# Configuration options related to warning and progress messages 680e298e216SJacques Pienaar#--------------------------------------------------------------------------- 681e298e216SJacques Pienaar 682e298e216SJacques Pienaar# The QUIET tag can be used to turn on/off the messages that are generated to 683e298e216SJacques Pienaar# standard output by doxygen. If QUIET is set to YES this implies that the 684e298e216SJacques Pienaar# messages are off. 685e298e216SJacques Pienaar# The default value is: NO. 686e298e216SJacques Pienaar 687e298e216SJacques PienaarQUIET = NO 688e298e216SJacques Pienaar 689e298e216SJacques Pienaar# The WARNINGS tag can be used to turn on/off the warning messages that are 690e298e216SJacques Pienaar# generated to standard error ( stderr) by doxygen. If WARNINGS is set to YES 691e298e216SJacques Pienaar# this implies that the warnings are on. 692e298e216SJacques Pienaar# 693e298e216SJacques Pienaar# Tip: Turn warnings on while writing the documentation. 694e298e216SJacques Pienaar# The default value is: YES. 695e298e216SJacques Pienaar 696e298e216SJacques PienaarWARNINGS = NO 697e298e216SJacques Pienaar 698e298e216SJacques Pienaar# If the WARN_IF_UNDOCUMENTED tag is set to YES, then doxygen will generate 699e298e216SJacques Pienaar# warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag 700e298e216SJacques Pienaar# will automatically be disabled. 701e298e216SJacques Pienaar# The default value is: YES. 702e298e216SJacques Pienaar 703e298e216SJacques PienaarWARN_IF_UNDOCUMENTED = NO 704e298e216SJacques Pienaar 705e298e216SJacques Pienaar# If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for 706e298e216SJacques Pienaar# potential errors in the documentation, such as not documenting some parameters 707e298e216SJacques Pienaar# in a documented function, or documenting parameters that don't exist or using 708e298e216SJacques Pienaar# markup commands wrongly. 709e298e216SJacques Pienaar# The default value is: YES. 710e298e216SJacques Pienaar 711e298e216SJacques PienaarWARN_IF_DOC_ERROR = YES 712e298e216SJacques Pienaar 713e298e216SJacques Pienaar# This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that 714e298e216SJacques Pienaar# are documented, but have no documentation for their parameters or return 715e298e216SJacques Pienaar# value. If set to NO doxygen will only warn about wrong or incomplete parameter 716e298e216SJacques Pienaar# documentation, but not about the absence of documentation. 717e298e216SJacques Pienaar# The default value is: NO. 718e298e216SJacques Pienaar 719e298e216SJacques PienaarWARN_NO_PARAMDOC = NO 720e298e216SJacques Pienaar 721e298e216SJacques Pienaar# The WARN_FORMAT tag determines the format of the warning messages that doxygen 722e298e216SJacques Pienaar# can produce. The string should contain the $file, $line, and $text tags, which 723e298e216SJacques Pienaar# will be replaced by the file and line number from which the warning originated 724e298e216SJacques Pienaar# and the warning text. Optionally the format may contain $version, which will 725e298e216SJacques Pienaar# be replaced by the version of the file (if it could be obtained via 726e298e216SJacques Pienaar# FILE_VERSION_FILTER) 727e298e216SJacques Pienaar# The default value is: $file:$line: $text. 728e298e216SJacques Pienaar 729e298e216SJacques PienaarWARN_FORMAT = "$file:$line: $text" 730e298e216SJacques Pienaar 731e298e216SJacques Pienaar# The WARN_LOGFILE tag can be used to specify a file to which warning and error 732e298e216SJacques Pienaar# messages should be written. If left blank the output is written to standard 733e298e216SJacques Pienaar# error (stderr). 734e298e216SJacques Pienaar 735e298e216SJacques PienaarWARN_LOGFILE = 736e298e216SJacques Pienaar 737e298e216SJacques Pienaar#--------------------------------------------------------------------------- 738e298e216SJacques Pienaar# Configuration options related to the input files 739e298e216SJacques Pienaar#--------------------------------------------------------------------------- 740e298e216SJacques Pienaar 741e298e216SJacques Pienaar# The INPUT tag is used to specify the files and/or directories that contain 742e298e216SJacques Pienaar# documented source files. You may enter file names like myfile.cpp or 743e298e216SJacques Pienaar# directories like /usr/src/myproject. Separate the files or directories with 744e298e216SJacques Pienaar# spaces. 745e298e216SJacques Pienaar# Note: If this tag is empty the current directory is searched. 746e298e216SJacques Pienaar 747e298e216SJacques PienaarINPUT = @abs_top_srcdir@/../include \ 748e298e216SJacques Pienaar @abs_top_srcdir@/../lib \ 749e298e216SJacques Pienaar @abs_top_srcdir@/doxygen-mainpage.dox 750e298e216SJacques Pienaar 751e298e216SJacques Pienaar# This tag can be used to specify the character encoding of the source files 752e298e216SJacques Pienaar# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses 753e298e216SJacques Pienaar# libiconv (or the iconv built into libc) for the transcoding. See the libiconv 754e298e216SJacques Pienaar# documentation (see: http://www.gnu.org/software/libiconv) for the list of 755e298e216SJacques Pienaar# possible encodings. 756e298e216SJacques Pienaar# The default value is: UTF-8. 757e298e216SJacques Pienaar 758e298e216SJacques PienaarINPUT_ENCODING = UTF-8 759e298e216SJacques Pienaar 760e298e216SJacques Pienaar# If the value of the INPUT tag contains directories, you can use the 761e298e216SJacques Pienaar# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and 762e298e216SJacques Pienaar# *.h) to filter out the source-files in the directories. If left blank the 763e298e216SJacques Pienaar# following patterns are tested:*.c, *.cc, *.cxx, *.cpp, *.c++, *.java, *.ii, 764e298e216SJacques Pienaar# *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, *.hh, *.hxx, *.hpp, 765e298e216SJacques Pienaar# *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, *.m, *.markdown, 766e298e216SJacques Pienaar# *.md, *.mm, *.dox, *.py, *.f90, *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf, 767e298e216SJacques Pienaar# *.qsf, *.as and *.js. 768e298e216SJacques Pienaar 769e298e216SJacques PienaarFILE_PATTERNS = 770e298e216SJacques Pienaar 771e298e216SJacques Pienaar# The RECURSIVE tag can be used to specify whether or not subdirectories should 772e298e216SJacques Pienaar# be searched for input files as well. 773e298e216SJacques Pienaar# The default value is: NO. 774e298e216SJacques Pienaar 775e298e216SJacques PienaarRECURSIVE = YES 776e298e216SJacques Pienaar 777e298e216SJacques Pienaar# The EXCLUDE tag can be used to specify files and/or directories that should be 778e298e216SJacques Pienaar# excluded from the INPUT source files. This way you can easily exclude a 779e298e216SJacques Pienaar# subdirectory from a directory tree whose root is specified with the INPUT tag. 780e298e216SJacques Pienaar# 781e298e216SJacques Pienaar# Note that relative paths are relative to the directory from which doxygen is 782e298e216SJacques Pienaar# run. 783e298e216SJacques Pienaar 784e298e216SJacques PienaarEXCLUDE = 785e298e216SJacques Pienaar 786e298e216SJacques Pienaar# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or 787e298e216SJacques Pienaar# directories that are symbolic links (a Unix file system feature) are excluded 788e298e216SJacques Pienaar# from the input. 789e298e216SJacques Pienaar# The default value is: NO. 790e298e216SJacques Pienaar 791e298e216SJacques PienaarEXCLUDE_SYMLINKS = NO 792e298e216SJacques Pienaar 793e298e216SJacques Pienaar# If the value of the INPUT tag contains directories, you can use the 794e298e216SJacques Pienaar# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude 795e298e216SJacques Pienaar# certain files from those directories. 796e298e216SJacques Pienaar# 797e298e216SJacques Pienaar# Note that the wildcards are matched against the file with absolute path, so to 798e298e216SJacques Pienaar# exclude all test directories for example use the pattern */test/* 799e298e216SJacques Pienaar 800e298e216SJacques PienaarEXCLUDE_PATTERNS = 801e298e216SJacques Pienaar 802e298e216SJacques Pienaar# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names 803e298e216SJacques Pienaar# (namespaces, classes, functions, etc.) that should be excluded from the 804e298e216SJacques Pienaar# output. The symbol name can be a fully qualified name, a word, or if the 805e298e216SJacques Pienaar# wildcard * is used, a substring. Examples: ANamespace, AClass, 806e298e216SJacques Pienaar# AClass::ANamespace, ANamespace::*Test 807e298e216SJacques Pienaar# 808e298e216SJacques Pienaar# Note that the wildcards are matched against the file with absolute path, so to 809e298e216SJacques Pienaar# exclude all test directories use the pattern */test/* 810e298e216SJacques Pienaar 811e298e216SJacques PienaarEXCLUDE_SYMBOLS = 812e298e216SJacques Pienaar 813e298e216SJacques Pienaar# The EXAMPLE_PATH tag can be used to specify one or more files or directories 814e298e216SJacques Pienaar# that contain example code fragments that are included (see the \include 815e298e216SJacques Pienaar# command). 816e298e216SJacques Pienaar 817e298e216SJacques PienaarEXAMPLE_PATH = @abs_top_srcdir@/../examples 818e298e216SJacques Pienaar 819e298e216SJacques Pienaar# If the value of the EXAMPLE_PATH tag contains directories, you can use the 820e298e216SJacques Pienaar# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and 821e298e216SJacques Pienaar# *.h) to filter out the source-files in the directories. If left blank all 822e298e216SJacques Pienaar# files are included. 823e298e216SJacques Pienaar 824e298e216SJacques PienaarEXAMPLE_PATTERNS = 825e298e216SJacques Pienaar 826e298e216SJacques Pienaar# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be 827e298e216SJacques Pienaar# searched for input files to be used with the \include or \dontinclude commands 828e298e216SJacques Pienaar# irrespective of the value of the RECURSIVE tag. 829e298e216SJacques Pienaar# The default value is: NO. 830e298e216SJacques Pienaar 831e298e216SJacques PienaarEXAMPLE_RECURSIVE = YES 832e298e216SJacques Pienaar 833e298e216SJacques Pienaar# The IMAGE_PATH tag can be used to specify one or more files or directories 834e298e216SJacques Pienaar# that contain images that are to be included in the documentation (see the 835e298e216SJacques Pienaar# \image command). 836e298e216SJacques Pienaar 837e298e216SJacques PienaarIMAGE_PATH = @abs_top_srcdir@/img 838e298e216SJacques Pienaar 839e298e216SJacques Pienaar# The INPUT_FILTER tag can be used to specify a program that doxygen should 840e298e216SJacques Pienaar# invoke to filter for each input file. Doxygen will invoke the filter program 841e298e216SJacques Pienaar# by executing (via popen()) the command: 842e298e216SJacques Pienaar# 843e298e216SJacques Pienaar# <filter> <input-file> 844e298e216SJacques Pienaar# 845e298e216SJacques Pienaar# where <filter> is the value of the INPUT_FILTER tag, and <input-file> is the 846e298e216SJacques Pienaar# name of an input file. Doxygen will then use the output that the filter 847e298e216SJacques Pienaar# program writes to standard output. If FILTER_PATTERNS is specified, this tag 848e298e216SJacques Pienaar# will be ignored. 849e298e216SJacques Pienaar# 850e298e216SJacques Pienaar# Note that the filter must not add or remove lines; it is applied before the 851e298e216SJacques Pienaar# code is scanned, but not when the output code is generated. If lines are added 852e298e216SJacques Pienaar# or removed, the anchors will not be placed correctly. 853e298e216SJacques Pienaar 854e298e216SJacques PienaarINPUT_FILTER = 855e298e216SJacques Pienaar 856e298e216SJacques Pienaar# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern 857e298e216SJacques Pienaar# basis. Doxygen will compare the file name with each pattern and apply the 858e298e216SJacques Pienaar# filter if there is a match. The filters are a list of the form: pattern=filter 859e298e216SJacques Pienaar# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how 860e298e216SJacques Pienaar# filters are used. If the FILTER_PATTERNS tag is empty or if none of the 861e298e216SJacques Pienaar# patterns match the file name, INPUT_FILTER is applied. 862e298e216SJacques Pienaar 863e298e216SJacques PienaarFILTER_PATTERNS = 864e298e216SJacques Pienaar 865e298e216SJacques Pienaar# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using 866e298e216SJacques Pienaar# INPUT_FILTER ) will also be used to filter the input files that are used for 867e298e216SJacques Pienaar# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES). 868e298e216SJacques Pienaar# The default value is: NO. 869e298e216SJacques Pienaar 870e298e216SJacques PienaarFILTER_SOURCE_FILES = NO 871e298e216SJacques Pienaar 872e298e216SJacques Pienaar# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file 873e298e216SJacques Pienaar# pattern. A pattern will override the setting for FILTER_PATTERN (if any) and 874e298e216SJacques Pienaar# it is also possible to disable source filtering for a specific pattern using 875e298e216SJacques Pienaar# *.ext= (so without naming a filter). 876e298e216SJacques Pienaar# This tag requires that the tag FILTER_SOURCE_FILES is set to YES. 877e298e216SJacques Pienaar 878e298e216SJacques PienaarFILTER_SOURCE_PATTERNS = 879e298e216SJacques Pienaar 880e298e216SJacques Pienaar# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that 881e298e216SJacques Pienaar# is part of the input, its contents will be placed on the main page 882e298e216SJacques Pienaar# (index.html). This can be useful if you have a project on for instance GitHub 883e298e216SJacques Pienaar# and want to reuse the introduction page also for the doxygen output. 884e298e216SJacques Pienaar 885e298e216SJacques PienaarUSE_MDFILE_AS_MAINPAGE = 886e298e216SJacques Pienaar 887e298e216SJacques Pienaar#--------------------------------------------------------------------------- 888e298e216SJacques Pienaar# Configuration options related to source browsing 889e298e216SJacques Pienaar#--------------------------------------------------------------------------- 890e298e216SJacques Pienaar 891e298e216SJacques Pienaar# If the SOURCE_BROWSER tag is set to YES then a list of source files will be 892e298e216SJacques Pienaar# generated. Documented entities will be cross-referenced with these sources. 893e298e216SJacques Pienaar# 894e298e216SJacques Pienaar# Note: To get rid of all source code in the generated output, make sure that 895e298e216SJacques Pienaar# also VERBATIM_HEADERS is set to NO. 896e298e216SJacques Pienaar# The default value is: NO. 897e298e216SJacques Pienaar 898e298e216SJacques PienaarSOURCE_BROWSER = YES 899e298e216SJacques Pienaar 900e298e216SJacques Pienaar# Setting the INLINE_SOURCES tag to YES will include the body of functions, 901e298e216SJacques Pienaar# classes and enums directly into the documentation. 902e298e216SJacques Pienaar# The default value is: NO. 903e298e216SJacques Pienaar 904e298e216SJacques PienaarINLINE_SOURCES = NO 905e298e216SJacques Pienaar 906e298e216SJacques Pienaar# Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any 907e298e216SJacques Pienaar# special comment blocks from generated source code fragments. Normal C, C++ and 908e298e216SJacques Pienaar# Fortran comments will always remain visible. 909e298e216SJacques Pienaar# The default value is: YES. 910e298e216SJacques Pienaar 911e298e216SJacques PienaarSTRIP_CODE_COMMENTS = NO 912e298e216SJacques Pienaar 913e298e216SJacques Pienaar# If the REFERENCED_BY_RELATION tag is set to YES then for each documented 914e298e216SJacques Pienaar# function all documented functions referencing it will be listed. 915e298e216SJacques Pienaar# The default value is: NO. 916e298e216SJacques Pienaar 917e298e216SJacques PienaarREFERENCED_BY_RELATION = YES 918e298e216SJacques Pienaar 919e298e216SJacques Pienaar# If the REFERENCES_RELATION tag is set to YES then for each documented function 920e298e216SJacques Pienaar# all documented entities called/used by that function will be listed. 921e298e216SJacques Pienaar# The default value is: NO. 922e298e216SJacques Pienaar 923e298e216SJacques PienaarREFERENCES_RELATION = YES 924e298e216SJacques Pienaar 925e298e216SJacques Pienaar# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set 926e298e216SJacques Pienaar# to YES, then the hyperlinks from functions in REFERENCES_RELATION and 927e298e216SJacques Pienaar# REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will 928e298e216SJacques Pienaar# link to the documentation. 929e298e216SJacques Pienaar# The default value is: YES. 930e298e216SJacques Pienaar 931e298e216SJacques PienaarREFERENCES_LINK_SOURCE = YES 932e298e216SJacques Pienaar 933e298e216SJacques Pienaar# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the 934e298e216SJacques Pienaar# source code will show a tooltip with additional information such as prototype, 935e298e216SJacques Pienaar# brief description and links to the definition and documentation. Since this 936e298e216SJacques Pienaar# will make the HTML file larger and loading of large files a bit slower, you 937e298e216SJacques Pienaar# can opt to disable this feature. 938e298e216SJacques Pienaar# The default value is: YES. 939e298e216SJacques Pienaar# This tag requires that the tag SOURCE_BROWSER is set to YES. 940e298e216SJacques Pienaar 941e298e216SJacques PienaarSOURCE_TOOLTIPS = YES 942e298e216SJacques Pienaar 943e298e216SJacques Pienaar# If the USE_HTAGS tag is set to YES then the references to source code will 944e298e216SJacques Pienaar# point to the HTML generated by the htags(1) tool instead of doxygen built-in 945e298e216SJacques Pienaar# source browser. The htags tool is part of GNU's global source tagging system 946e298e216SJacques Pienaar# (see http://www.gnu.org/software/global/global.html). You will need version 947e298e216SJacques Pienaar# 4.8.6 or higher. 948e298e216SJacques Pienaar# 949e298e216SJacques Pienaar# To use it do the following: 950e298e216SJacques Pienaar# - Install the latest version of global 951e298e216SJacques Pienaar# - Enable SOURCE_BROWSER and USE_HTAGS in the config file 952e298e216SJacques Pienaar# - Make sure the INPUT points to the root of the source tree 953e298e216SJacques Pienaar# - Run doxygen as normal 954e298e216SJacques Pienaar# 955e298e216SJacques Pienaar# Doxygen will invoke htags (and that will in turn invoke gtags), so these 956e298e216SJacques Pienaar# tools must be available from the command line (i.e. in the search path). 957e298e216SJacques Pienaar# 958e298e216SJacques Pienaar# The result: instead of the source browser generated by doxygen, the links to 959e298e216SJacques Pienaar# source code will now point to the output of htags. 960e298e216SJacques Pienaar# The default value is: NO. 961e298e216SJacques Pienaar# This tag requires that the tag SOURCE_BROWSER is set to YES. 962e298e216SJacques Pienaar 963e298e216SJacques PienaarUSE_HTAGS = NO 964e298e216SJacques Pienaar 965e298e216SJacques Pienaar# If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a 966e298e216SJacques Pienaar# verbatim copy of the header file for each class for which an include is 967e298e216SJacques Pienaar# specified. Set to NO to disable this. 968e298e216SJacques Pienaar# See also: Section \class. 969e298e216SJacques Pienaar# The default value is: YES. 970e298e216SJacques Pienaar 971e298e216SJacques PienaarVERBATIM_HEADERS = YES 972e298e216SJacques Pienaar 973e298e216SJacques Pienaar#--------------------------------------------------------------------------- 974e298e216SJacques Pienaar# Configuration options related to the alphabetical class index 975e298e216SJacques Pienaar#--------------------------------------------------------------------------- 976e298e216SJacques Pienaar 977e298e216SJacques Pienaar# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all 978e298e216SJacques Pienaar# compounds will be generated. Enable this if the project contains a lot of 979e298e216SJacques Pienaar# classes, structs, unions or interfaces. 980e298e216SJacques Pienaar# The default value is: YES. 981e298e216SJacques Pienaar 982e298e216SJacques PienaarALPHABETICAL_INDEX = YES 983e298e216SJacques Pienaar 984e298e216SJacques Pienaar# The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in 985e298e216SJacques Pienaar# which the alphabetical index list will be split. 986e298e216SJacques Pienaar# Minimum value: 1, maximum value: 20, default value: 5. 987e298e216SJacques Pienaar# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. 988e298e216SJacques Pienaar 989e298e216SJacques PienaarCOLS_IN_ALPHA_INDEX = 4 990e298e216SJacques Pienaar 991e298e216SJacques Pienaar# In case all classes in a project start with a common prefix, all classes will 992e298e216SJacques Pienaar# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag 993e298e216SJacques Pienaar# can be used to specify a prefix (or a list of prefixes) that should be ignored 994e298e216SJacques Pienaar# while generating the index headers. 995e298e216SJacques Pienaar# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. 996e298e216SJacques Pienaar 997e298e216SJacques PienaarIGNORE_PREFIX = llvm:: mlir:: 998e298e216SJacques Pienaar 999e298e216SJacques Pienaar#--------------------------------------------------------------------------- 1000e298e216SJacques Pienaar# Configuration options related to the HTML output 1001e298e216SJacques Pienaar#--------------------------------------------------------------------------- 1002e298e216SJacques Pienaar 1003e298e216SJacques Pienaar# If the GENERATE_HTML tag is set to YES doxygen will generate HTML output 1004e298e216SJacques Pienaar# The default value is: YES. 1005e298e216SJacques Pienaar 1006e298e216SJacques PienaarGENERATE_HTML = YES 1007e298e216SJacques Pienaar 1008e298e216SJacques Pienaar# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a 1009e298e216SJacques Pienaar# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of 1010e298e216SJacques Pienaar# it. 1011e298e216SJacques Pienaar# The default directory is: html. 1012e298e216SJacques Pienaar# This tag requires that the tag GENERATE_HTML is set to YES. 1013e298e216SJacques Pienaar 1014e298e216SJacques PienaarHTML_OUTPUT = html 1015e298e216SJacques Pienaar 1016e298e216SJacques Pienaar# The HTML_FILE_EXTENSION tag can be used to specify the file extension for each 1017e298e216SJacques Pienaar# generated HTML page (for example: .htm, .php, .asp). 1018e298e216SJacques Pienaar# The default value is: .html. 1019e298e216SJacques Pienaar# This tag requires that the tag GENERATE_HTML is set to YES. 1020e298e216SJacques Pienaar 1021e298e216SJacques PienaarHTML_FILE_EXTENSION = .html 1022e298e216SJacques Pienaar 1023e298e216SJacques Pienaar# The HTML_HEADER tag can be used to specify a user-defined HTML header file for 1024e298e216SJacques Pienaar# each generated HTML page. If the tag is left blank doxygen will generate a 1025e298e216SJacques Pienaar# standard header. 1026e298e216SJacques Pienaar# 1027e298e216SJacques Pienaar# To get valid HTML the header file that includes any scripts and style sheets 1028e298e216SJacques Pienaar# that doxygen needs, which is dependent on the configuration options used (e.g. 1029e298e216SJacques Pienaar# the setting GENERATE_TREEVIEW). It is highly recommended to start with a 1030e298e216SJacques Pienaar# default header using 1031e298e216SJacques Pienaar# doxygen -w html new_header.html new_footer.html new_stylesheet.css 1032e298e216SJacques Pienaar# YourConfigFile 1033e298e216SJacques Pienaar# and then modify the file new_header.html. See also section "Doxygen usage" 1034e298e216SJacques Pienaar# for information on how to generate the default header that doxygen normally 1035e298e216SJacques Pienaar# uses. 1036e298e216SJacques Pienaar# Note: The header is subject to change so you typically have to regenerate the 1037e298e216SJacques Pienaar# default header when upgrading to a newer version of doxygen. For a description 1038e298e216SJacques Pienaar# of the possible markers and block names see the documentation. 1039e298e216SJacques Pienaar# This tag requires that the tag GENERATE_HTML is set to YES. 1040e298e216SJacques Pienaar 1041e298e216SJacques PienaarHTML_HEADER = 1042e298e216SJacques Pienaar 1043e298e216SJacques Pienaar# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each 1044e298e216SJacques Pienaar# generated HTML page. If the tag is left blank doxygen will generate a standard 1045e298e216SJacques Pienaar# footer. See HTML_HEADER for more information on how to generate a default 1046e298e216SJacques Pienaar# footer and what special commands can be used inside the footer. See also 1047e298e216SJacques Pienaar# section "Doxygen usage" for information on how to generate the default footer 1048e298e216SJacques Pienaar# that doxygen normally uses. 1049e298e216SJacques Pienaar# This tag requires that the tag GENERATE_HTML is set to YES. 1050e298e216SJacques Pienaar 1051e298e216SJacques PienaarHTML_FOOTER = 1052e298e216SJacques Pienaar 1053e298e216SJacques Pienaar# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style 1054e298e216SJacques Pienaar# sheet that is used by each HTML page. It can be used to fine-tune the look of 1055e298e216SJacques Pienaar# the HTML output. If left blank doxygen will generate a default style sheet. 1056e298e216SJacques Pienaar# See also section "Doxygen usage" for information on how to generate the style 1057e298e216SJacques Pienaar# sheet that doxygen normally uses. 1058e298e216SJacques Pienaar# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as 1059e298e216SJacques Pienaar# it is more robust and this tag (HTML_STYLESHEET) will in the future become 1060e298e216SJacques Pienaar# obsolete. 1061e298e216SJacques Pienaar# This tag requires that the tag GENERATE_HTML is set to YES. 1062e298e216SJacques Pienaar 1063e298e216SJacques PienaarHTML_STYLESHEET = 1064e298e216SJacques Pienaar 1065e298e216SJacques Pienaar# The HTML_EXTRA_STYLESHEET tag can be used to specify an additional user- 1066e298e216SJacques Pienaar# defined cascading style sheet that is included after the standard style sheets 1067e298e216SJacques Pienaar# created by doxygen. Using this option one can overrule certain style aspects. 1068e298e216SJacques Pienaar# This is preferred over using HTML_STYLESHEET since it does not replace the 1069e298e216SJacques Pienaar# standard style sheet and is therefor more robust against future updates. 1070e298e216SJacques Pienaar# Doxygen will copy the style sheet file to the output directory. For an example 1071e298e216SJacques Pienaar# see the documentation. 1072e298e216SJacques Pienaar# This tag requires that the tag GENERATE_HTML is set to YES. 1073e298e216SJacques Pienaar 1074e298e216SJacques PienaarHTML_EXTRA_STYLESHEET = 1075e298e216SJacques Pienaar 1076e298e216SJacques Pienaar# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or 1077e298e216SJacques Pienaar# other source files which should be copied to the HTML output directory. Note 1078e298e216SJacques Pienaar# that these files will be copied to the base HTML output directory. Use the 1079e298e216SJacques Pienaar# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these 1080e298e216SJacques Pienaar# files. In the HTML_STYLESHEET file, use the file name only. Also note that the 1081e298e216SJacques Pienaar# files will be copied as-is; there are no commands or markers available. 1082e298e216SJacques Pienaar# This tag requires that the tag GENERATE_HTML is set to YES. 1083e298e216SJacques Pienaar 1084e298e216SJacques PienaarHTML_EXTRA_FILES = 1085e298e216SJacques Pienaar 1086e298e216SJacques Pienaar# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen 1087e298e216SJacques Pienaar# will adjust the colors in the stylesheet and background images according to 1088e298e216SJacques Pienaar# this color. Hue is specified as an angle on a colorwheel, see 1089e298e216SJacques Pienaar# http://en.wikipedia.org/wiki/Hue for more information. For instance the value 1090e298e216SJacques Pienaar# 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300 1091e298e216SJacques Pienaar# purple, and 360 is red again. 1092e298e216SJacques Pienaar# Minimum value: 0, maximum value: 359, default value: 220. 1093e298e216SJacques Pienaar# This tag requires that the tag GENERATE_HTML is set to YES. 1094e298e216SJacques Pienaar 1095e298e216SJacques PienaarHTML_COLORSTYLE_HUE = 220 1096e298e216SJacques Pienaar 1097e298e216SJacques Pienaar# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors 1098e298e216SJacques Pienaar# in the HTML output. For a value of 0 the output will use grayscales only. A 1099e298e216SJacques Pienaar# value of 255 will produce the most vivid colors. 1100e298e216SJacques Pienaar# Minimum value: 0, maximum value: 255, default value: 100. 1101e298e216SJacques Pienaar# This tag requires that the tag GENERATE_HTML is set to YES. 1102e298e216SJacques Pienaar 1103e298e216SJacques PienaarHTML_COLORSTYLE_SAT = 100 1104e298e216SJacques Pienaar 1105e298e216SJacques Pienaar# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the 1106e298e216SJacques Pienaar# luminance component of the colors in the HTML output. Values below 100 1107e298e216SJacques Pienaar# gradually make the output lighter, whereas values above 100 make the output 1108e298e216SJacques Pienaar# darker. The value divided by 100 is the actual gamma applied, so 80 represents 1109e298e216SJacques Pienaar# a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not 1110e298e216SJacques Pienaar# change the gamma. 1111e298e216SJacques Pienaar# Minimum value: 40, maximum value: 240, default value: 80. 1112e298e216SJacques Pienaar# This tag requires that the tag GENERATE_HTML is set to YES. 1113e298e216SJacques Pienaar 1114e298e216SJacques PienaarHTML_COLORSTYLE_GAMMA = 80 1115e298e216SJacques Pienaar 1116e298e216SJacques Pienaar# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML 1117e298e216SJacques Pienaar# page will contain the date and time when the page was generated. Setting this 1118e298e216SJacques Pienaar# to NO can help when comparing the output of multiple runs. 1119e298e216SJacques Pienaar# The default value is: YES. 1120e298e216SJacques Pienaar# This tag requires that the tag GENERATE_HTML is set to YES. 1121e298e216SJacques Pienaar 1122e298e216SJacques PienaarHTML_TIMESTAMP = YES 1123e298e216SJacques Pienaar 1124e298e216SJacques Pienaar# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML 1125e298e216SJacques Pienaar# documentation will contain sections that can be hidden and shown after the 1126e298e216SJacques Pienaar# page has loaded. 1127e298e216SJacques Pienaar# The default value is: NO. 1128e298e216SJacques Pienaar# This tag requires that the tag GENERATE_HTML is set to YES. 1129e298e216SJacques Pienaar 11307deed49aSAlex ZinenkoHTML_DYNAMIC_SECTIONS = YES 1131e298e216SJacques Pienaar 1132e298e216SJacques Pienaar# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries 1133e298e216SJacques Pienaar# shown in the various tree structured indices initially; the user can expand 1134e298e216SJacques Pienaar# and collapse entries dynamically later on. Doxygen will expand the tree to 1135e298e216SJacques Pienaar# such a level that at most the specified number of entries are visible (unless 1136e298e216SJacques Pienaar# a fully collapsed tree already exceeds this amount). So setting the number of 1137e298e216SJacques Pienaar# entries 1 will produce a full collapsed tree by default. 0 is a special value 1138e298e216SJacques Pienaar# representing an infinite number of entries and will result in a full expanded 1139e298e216SJacques Pienaar# tree by default. 1140e298e216SJacques Pienaar# Minimum value: 0, maximum value: 9999, default value: 100. 1141e298e216SJacques Pienaar# This tag requires that the tag GENERATE_HTML is set to YES. 1142e298e216SJacques Pienaar 1143e298e216SJacques PienaarHTML_INDEX_NUM_ENTRIES = 100 1144e298e216SJacques Pienaar 1145e298e216SJacques Pienaar# If the GENERATE_DOCSET tag is set to YES, additional index files will be 1146e298e216SJacques Pienaar# generated that can be used as input for Apple's Xcode 3 integrated development 1147e298e216SJacques Pienaar# environment (see: http://developer.apple.com/tools/xcode/), introduced with 1148e298e216SJacques Pienaar# OSX 10.5 (Leopard). To create a documentation set, doxygen will generate a 1149e298e216SJacques Pienaar# Makefile in the HTML output directory. Running make will produce the docset in 1150e298e216SJacques Pienaar# that directory and running make install will install the docset in 1151e298e216SJacques Pienaar# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at 1152e298e216SJacques Pienaar# startup. See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html 1153e298e216SJacques Pienaar# for more information. 1154e298e216SJacques Pienaar# The default value is: NO. 1155e298e216SJacques Pienaar# This tag requires that the tag GENERATE_HTML is set to YES. 1156e298e216SJacques Pienaar 1157e298e216SJacques PienaarGENERATE_DOCSET = NO 1158e298e216SJacques Pienaar 1159e298e216SJacques Pienaar# This tag determines the name of the docset feed. A documentation feed provides 1160e298e216SJacques Pienaar# an umbrella under which multiple documentation sets from a single provider 1161e298e216SJacques Pienaar# (such as a company or product suite) can be grouped. 1162e298e216SJacques Pienaar# The default value is: Doxygen generated docs. 1163e298e216SJacques Pienaar# This tag requires that the tag GENERATE_DOCSET is set to YES. 1164e298e216SJacques Pienaar 1165e298e216SJacques PienaarDOCSET_FEEDNAME = "Doxygen generated docs" 1166e298e216SJacques Pienaar 1167e298e216SJacques Pienaar# This tag specifies a string that should uniquely identify the documentation 1168e298e216SJacques Pienaar# set bundle. This should be a reverse domain-name style string, e.g. 1169e298e216SJacques Pienaar# com.mycompany.MyDocSet. Doxygen will append .docset to the name. 1170e298e216SJacques Pienaar# The default value is: org.doxygen.Project. 1171e298e216SJacques Pienaar# This tag requires that the tag GENERATE_DOCSET is set to YES. 1172e298e216SJacques Pienaar 1173e298e216SJacques PienaarDOCSET_BUNDLE_ID = org.doxygen.Project 1174e298e216SJacques Pienaar 1175e298e216SJacques Pienaar# The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify 1176e298e216SJacques Pienaar# the documentation publisher. This should be a reverse domain-name style 1177e298e216SJacques Pienaar# string, e.g. com.mycompany.MyDocSet.documentation. 1178e298e216SJacques Pienaar# The default value is: org.doxygen.Publisher. 1179e298e216SJacques Pienaar# This tag requires that the tag GENERATE_DOCSET is set to YES. 1180e298e216SJacques Pienaar 1181e298e216SJacques PienaarDOCSET_PUBLISHER_ID = org.doxygen.Publisher 1182e298e216SJacques Pienaar 1183e298e216SJacques Pienaar# The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher. 1184e298e216SJacques Pienaar# The default value is: Publisher. 1185e298e216SJacques Pienaar# This tag requires that the tag GENERATE_DOCSET is set to YES. 1186e298e216SJacques Pienaar 1187e298e216SJacques PienaarDOCSET_PUBLISHER_NAME = Publisher 1188e298e216SJacques Pienaar 1189e298e216SJacques Pienaar# If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three 1190e298e216SJacques Pienaar# additional HTML index files: index.hhp, index.hhc, and index.hhk. The 1191e298e216SJacques Pienaar# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop 1192e298e216SJacques Pienaar# (see: http://www.microsoft.com/en-us/download/details.aspx?id=21138) on 1193e298e216SJacques Pienaar# Windows. 1194e298e216SJacques Pienaar# 1195e298e216SJacques Pienaar# The HTML Help Workshop contains a compiler that can convert all HTML output 1196e298e216SJacques Pienaar# generated by doxygen into a single compiled HTML file (.chm). Compiled HTML 1197e298e216SJacques Pienaar# files are now used as the Windows 98 help format, and will replace the old 1198e298e216SJacques Pienaar# Windows help format (.hlp) on all Windows platforms in the future. Compressed 1199e298e216SJacques Pienaar# HTML files also contain an index, a table of contents, and you can search for 1200e298e216SJacques Pienaar# words in the documentation. The HTML workshop also contains a viewer for 1201e298e216SJacques Pienaar# compressed HTML files. 1202e298e216SJacques Pienaar# The default value is: NO. 1203e298e216SJacques Pienaar# This tag requires that the tag GENERATE_HTML is set to YES. 1204e298e216SJacques Pienaar 1205e298e216SJacques PienaarGENERATE_HTMLHELP = NO 1206e298e216SJacques Pienaar 1207e298e216SJacques Pienaar# The CHM_FILE tag can be used to specify the file name of the resulting .chm 1208e298e216SJacques Pienaar# file. You can add a path in front of the file if the result should not be 1209e298e216SJacques Pienaar# written to the html output directory. 1210e298e216SJacques Pienaar# This tag requires that the tag GENERATE_HTMLHELP is set to YES. 1211e298e216SJacques Pienaar 1212e298e216SJacques PienaarCHM_FILE = 1213e298e216SJacques Pienaar 1214e298e216SJacques Pienaar# The HHC_LOCATION tag can be used to specify the location (absolute path 1215e298e216SJacques Pienaar# including file name) of the HTML help compiler ( hhc.exe). If non-empty 1216e298e216SJacques Pienaar# doxygen will try to run the HTML help compiler on the generated index.hhp. 1217e298e216SJacques Pienaar# The file has to be specified with full path. 1218e298e216SJacques Pienaar# This tag requires that the tag GENERATE_HTMLHELP is set to YES. 1219e298e216SJacques Pienaar 1220e298e216SJacques PienaarHHC_LOCATION = 1221e298e216SJacques Pienaar 1222e298e216SJacques Pienaar# The GENERATE_CHI flag controls if a separate .chi index file is generated ( 1223c3b15b71SQuinn Pham# YES) or that it should be included in the main .chm file ( NO). 1224e298e216SJacques Pienaar# The default value is: NO. 1225e298e216SJacques Pienaar# This tag requires that the tag GENERATE_HTMLHELP is set to YES. 1226e298e216SJacques Pienaar 1227e298e216SJacques PienaarGENERATE_CHI = NO 1228e298e216SJacques Pienaar 1229e298e216SJacques Pienaar# The CHM_INDEX_ENCODING is used to encode HtmlHelp index ( hhk), content ( hhc) 1230e298e216SJacques Pienaar# and project file content. 1231e298e216SJacques Pienaar# This tag requires that the tag GENERATE_HTMLHELP is set to YES. 1232e298e216SJacques Pienaar 1233e298e216SJacques PienaarCHM_INDEX_ENCODING = 1234e298e216SJacques Pienaar 1235e298e216SJacques Pienaar# The BINARY_TOC flag controls whether a binary table of contents is generated ( 1236e298e216SJacques Pienaar# YES) or a normal table of contents ( NO) in the .chm file. 1237e298e216SJacques Pienaar# The default value is: NO. 1238e298e216SJacques Pienaar# This tag requires that the tag GENERATE_HTMLHELP is set to YES. 1239e298e216SJacques Pienaar 1240e298e216SJacques PienaarBINARY_TOC = NO 1241e298e216SJacques Pienaar 1242e298e216SJacques Pienaar# The TOC_EXPAND flag can be set to YES to add extra items for group members to 1243e298e216SJacques Pienaar# the table of contents of the HTML help documentation and to the tree view. 1244e298e216SJacques Pienaar# The default value is: NO. 1245e298e216SJacques Pienaar# This tag requires that the tag GENERATE_HTMLHELP is set to YES. 1246e298e216SJacques Pienaar 1247e298e216SJacques PienaarTOC_EXPAND = NO 1248e298e216SJacques Pienaar 1249e298e216SJacques Pienaar# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and 1250e298e216SJacques Pienaar# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that 1251e298e216SJacques Pienaar# can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help 1252e298e216SJacques Pienaar# (.qch) of the generated HTML documentation. 1253e298e216SJacques Pienaar# The default value is: NO. 1254e298e216SJacques Pienaar# This tag requires that the tag GENERATE_HTML is set to YES. 1255e298e216SJacques Pienaar 1256e298e216SJacques PienaarGENERATE_QHP = @llvm_doxygen_generate_qhp@ 1257e298e216SJacques Pienaar 1258e298e216SJacques Pienaar# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify 1259e298e216SJacques Pienaar# the file name of the resulting .qch file. The path specified is relative to 1260e298e216SJacques Pienaar# the HTML output folder. 1261e298e216SJacques Pienaar# This tag requires that the tag GENERATE_QHP is set to YES. 1262e298e216SJacques Pienaar 1263e298e216SJacques PienaarQCH_FILE = @llvm_doxygen_qch_filename@ 1264e298e216SJacques Pienaar 1265e298e216SJacques Pienaar# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help 1266e298e216SJacques Pienaar# Project output. For more information please see Qt Help Project / Namespace 1267e298e216SJacques Pienaar# (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#namespace). 1268e298e216SJacques Pienaar# The default value is: org.doxygen.Project. 1269e298e216SJacques Pienaar# This tag requires that the tag GENERATE_QHP is set to YES. 1270e298e216SJacques Pienaar 1271e298e216SJacques PienaarQHP_NAMESPACE = @llvm_doxygen_qhp_namespace@ 1272e298e216SJacques Pienaar 1273e298e216SJacques Pienaar# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt 1274e298e216SJacques Pienaar# Help Project output. For more information please see Qt Help Project / Virtual 1275e298e216SJacques Pienaar# Folders (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#virtual- 1276e298e216SJacques Pienaar# folders). 1277e298e216SJacques Pienaar# The default value is: doc. 1278e298e216SJacques Pienaar# This tag requires that the tag GENERATE_QHP is set to YES. 1279e298e216SJacques Pienaar 1280e298e216SJacques PienaarQHP_VIRTUAL_FOLDER = doc 1281e298e216SJacques Pienaar 1282e298e216SJacques Pienaar# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom 1283e298e216SJacques Pienaar# filter to add. For more information please see Qt Help Project / Custom 1284e298e216SJacques Pienaar# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- 1285e298e216SJacques Pienaar# filters). 1286e298e216SJacques Pienaar# This tag requires that the tag GENERATE_QHP is set to YES. 1287e298e216SJacques Pienaar 1288e298e216SJacques PienaarQHP_CUST_FILTER_NAME = @llvm_doxygen_qhp_cust_filter_name@ 1289e298e216SJacques Pienaar 1290e298e216SJacques Pienaar# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the 1291e298e216SJacques Pienaar# custom filter to add. For more information please see Qt Help Project / Custom 1292e298e216SJacques Pienaar# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- 1293e298e216SJacques Pienaar# filters). 1294e298e216SJacques Pienaar# This tag requires that the tag GENERATE_QHP is set to YES. 1295e298e216SJacques Pienaar 1296e298e216SJacques PienaarQHP_CUST_FILTER_ATTRS = @llvm_doxygen_qhp_cust_filter_attrs@ 1297e298e216SJacques Pienaar 1298e298e216SJacques Pienaar# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this 1299e298e216SJacques Pienaar# project's filter section matches. Qt Help Project / Filter Attributes (see: 1300e298e216SJacques Pienaar# http://qt-project.org/doc/qt-4.8/qthelpproject.html#filter-attributes). 1301e298e216SJacques Pienaar# This tag requires that the tag GENERATE_QHP is set to YES. 1302e298e216SJacques Pienaar 1303e298e216SJacques PienaarQHP_SECT_FILTER_ATTRS = 1304e298e216SJacques Pienaar 1305e298e216SJacques Pienaar# The QHG_LOCATION tag can be used to specify the location of Qt's 1306e298e216SJacques Pienaar# qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the 1307e298e216SJacques Pienaar# generated .qhp file. 1308e298e216SJacques Pienaar# This tag requires that the tag GENERATE_QHP is set to YES. 1309e298e216SJacques Pienaar 1310e298e216SJacques PienaarQHG_LOCATION = @llvm_doxygen_qhelpgenerator_path@ 1311e298e216SJacques Pienaar 1312e298e216SJacques Pienaar# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be 1313e298e216SJacques Pienaar# generated, together with the HTML files, they form an Eclipse help plugin. To 1314e298e216SJacques Pienaar# install this plugin and make it available under the help contents menu in 1315e298e216SJacques Pienaar# Eclipse, the contents of the directory containing the HTML and XML files needs 1316e298e216SJacques Pienaar# to be copied into the plugins directory of eclipse. The name of the directory 1317e298e216SJacques Pienaar# within the plugins directory should be the same as the ECLIPSE_DOC_ID value. 1318e298e216SJacques Pienaar# After copying Eclipse needs to be restarted before the help appears. 1319e298e216SJacques Pienaar# The default value is: NO. 1320e298e216SJacques Pienaar# This tag requires that the tag GENERATE_HTML is set to YES. 1321e298e216SJacques Pienaar 1322e298e216SJacques PienaarGENERATE_ECLIPSEHELP = NO 1323e298e216SJacques Pienaar 1324e298e216SJacques Pienaar# A unique identifier for the Eclipse help plugin. When installing the plugin 1325e298e216SJacques Pienaar# the directory name containing the HTML and XML files should also have this 1326e298e216SJacques Pienaar# name. Each documentation set should have its own identifier. 1327e298e216SJacques Pienaar# The default value is: org.doxygen.Project. 1328e298e216SJacques Pienaar# This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES. 1329e298e216SJacques Pienaar 1330e298e216SJacques PienaarECLIPSE_DOC_ID = org.doxygen.Project 1331e298e216SJacques Pienaar 1332e298e216SJacques Pienaar# If you want full control over the layout of the generated HTML pages it might 1333e298e216SJacques Pienaar# be necessary to disable the index and replace it with your own. The 1334e298e216SJacques Pienaar# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top 1335e298e216SJacques Pienaar# of each HTML page. A value of NO enables the index and the value YES disables 1336e298e216SJacques Pienaar# it. Since the tabs in the index contain the same information as the navigation 1337e298e216SJacques Pienaar# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES. 1338e298e216SJacques Pienaar# The default value is: NO. 1339e298e216SJacques Pienaar# This tag requires that the tag GENERATE_HTML is set to YES. 1340e298e216SJacques Pienaar 1341e298e216SJacques PienaarDISABLE_INDEX = NO 1342e298e216SJacques Pienaar 1343e298e216SJacques Pienaar# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index 1344e298e216SJacques Pienaar# structure should be generated to display hierarchical information. If the tag 1345e298e216SJacques Pienaar# value is set to YES, a side panel will be generated containing a tree-like 1346e298e216SJacques Pienaar# index structure (just like the one that is generated for HTML Help). For this 1347e298e216SJacques Pienaar# to work a browser that supports JavaScript, DHTML, CSS and frames is required 1348e298e216SJacques Pienaar# (i.e. any modern browser). Windows users are probably better off using the 1349e298e216SJacques Pienaar# HTML help feature. Via custom stylesheets (see HTML_EXTRA_STYLESHEET) one can 1350e298e216SJacques Pienaar# further fine-tune the look of the index. As an example, the default style 1351e298e216SJacques Pienaar# sheet generated by doxygen has an example that shows how to put an image at 1352e298e216SJacques Pienaar# the root of the tree instead of the PROJECT_NAME. Since the tree basically has 1353e298e216SJacques Pienaar# the same information as the tab index, you could consider setting 1354e298e216SJacques Pienaar# DISABLE_INDEX to YES when enabling this option. 1355e298e216SJacques Pienaar# The default value is: NO. 1356e298e216SJacques Pienaar# This tag requires that the tag GENERATE_HTML is set to YES. 1357e298e216SJacques Pienaar 1358e298e216SJacques PienaarGENERATE_TREEVIEW = NO 1359e298e216SJacques Pienaar 1360e298e216SJacques Pienaar# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that 1361e298e216SJacques Pienaar# doxygen will group on one line in the generated HTML documentation. 1362e298e216SJacques Pienaar# 1363e298e216SJacques Pienaar# Note that a value of 0 will completely suppress the enum values from appearing 1364e298e216SJacques Pienaar# in the overview section. 1365e298e216SJacques Pienaar# Minimum value: 0, maximum value: 20, default value: 4. 1366e298e216SJacques Pienaar# This tag requires that the tag GENERATE_HTML is set to YES. 1367e298e216SJacques Pienaar 1368e298e216SJacques PienaarENUM_VALUES_PER_LINE = 4 1369e298e216SJacques Pienaar 1370e298e216SJacques Pienaar# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used 1371e298e216SJacques Pienaar# to set the initial width (in pixels) of the frame in which the tree is shown. 1372e298e216SJacques Pienaar# Minimum value: 0, maximum value: 1500, default value: 250. 1373e298e216SJacques Pienaar# This tag requires that the tag GENERATE_HTML is set to YES. 1374e298e216SJacques Pienaar 1375e298e216SJacques PienaarTREEVIEW_WIDTH = 250 1376e298e216SJacques Pienaar 1377e298e216SJacques Pienaar# When the EXT_LINKS_IN_WINDOW option is set to YES doxygen will open links to 1378e298e216SJacques Pienaar# external symbols imported via tag files in a separate window. 1379e298e216SJacques Pienaar# The default value is: NO. 1380e298e216SJacques Pienaar# This tag requires that the tag GENERATE_HTML is set to YES. 1381e298e216SJacques Pienaar 1382e298e216SJacques PienaarEXT_LINKS_IN_WINDOW = NO 1383e298e216SJacques Pienaar 1384e298e216SJacques Pienaar# Use this tag to change the font size of LaTeX formulas included as images in 1385e298e216SJacques Pienaar# the HTML documentation. When you change the font size after a successful 1386e298e216SJacques Pienaar# doxygen run you need to manually remove any form_*.png images from the HTML 1387e298e216SJacques Pienaar# output directory to force them to be regenerated. 1388e298e216SJacques Pienaar# Minimum value: 8, maximum value: 50, default value: 10. 1389e298e216SJacques Pienaar# This tag requires that the tag GENERATE_HTML is set to YES. 1390e298e216SJacques Pienaar 1391e298e216SJacques PienaarFORMULA_FONTSIZE = 10 1392e298e216SJacques Pienaar 13935aacce3dSKazuaki Ishizaki# Use the FORMULA_TRANSPARENT tag to determine whether or not the images 1394e298e216SJacques Pienaar# generated for formulas are transparent PNGs. Transparent PNGs are not 1395e298e216SJacques Pienaar# supported properly for IE 6.0, but are supported on all modern browsers. 1396e298e216SJacques Pienaar# 1397e298e216SJacques Pienaar# Note that when changing this option you need to delete any form_*.png files in 1398e298e216SJacques Pienaar# the HTML output directory before the changes have effect. 1399e298e216SJacques Pienaar# The default value is: YES. 1400e298e216SJacques Pienaar# This tag requires that the tag GENERATE_HTML is set to YES. 1401e298e216SJacques Pienaar 1402e298e216SJacques PienaarFORMULA_TRANSPARENT = YES 1403e298e216SJacques Pienaar 1404e298e216SJacques Pienaar# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see 1405e298e216SJacques Pienaar# http://www.mathjax.org) which uses client side Javascript for the rendering 1406e298e216SJacques Pienaar# instead of using prerendered bitmaps. Use this if you do not have LaTeX 1407e298e216SJacques Pienaar# installed or if you want to formulas look prettier in the HTML output. When 1408e298e216SJacques Pienaar# enabled you may also need to install MathJax separately and configure the path 1409e298e216SJacques Pienaar# to it using the MATHJAX_RELPATH option. 1410e298e216SJacques Pienaar# The default value is: NO. 1411e298e216SJacques Pienaar# This tag requires that the tag GENERATE_HTML is set to YES. 1412e298e216SJacques Pienaar 1413e298e216SJacques PienaarUSE_MATHJAX = YES 1414e298e216SJacques Pienaar 1415e298e216SJacques Pienaar# When MathJax is enabled you can set the default output format to be used for 1416e298e216SJacques Pienaar# the MathJax output. See the MathJax site (see: 1417e298e216SJacques Pienaar# http://docs.mathjax.org/en/latest/output.html) for more details. 1418e298e216SJacques Pienaar# Possible values are: HTML-CSS (which is slower, but has the best 1419e298e216SJacques Pienaar# compatibility), NativeMML (i.e. MathML) and SVG. 1420e298e216SJacques Pienaar# The default value is: HTML-CSS. 1421e298e216SJacques Pienaar# This tag requires that the tag USE_MATHJAX is set to YES. 1422e298e216SJacques Pienaar 1423e298e216SJacques PienaarMATHJAX_FORMAT = HTML-CSS 1424e298e216SJacques Pienaar 1425e298e216SJacques Pienaar# When MathJax is enabled you need to specify the location relative to the HTML 1426e298e216SJacques Pienaar# output directory using the MATHJAX_RELPATH option. The destination directory 1427e298e216SJacques Pienaar# should contain the MathJax.js script. For instance, if the mathjax directory 1428e298e216SJacques Pienaar# is located at the same level as the HTML output directory, then 1429e298e216SJacques Pienaar# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax 1430e298e216SJacques Pienaar# Content Delivery Network so you can quickly see the result without installing 1431e298e216SJacques Pienaar# MathJax. However, it is strongly recommended to install a local copy of 1432e298e216SJacques Pienaar# MathJax from http://www.mathjax.org before deployment. 1433e298e216SJacques Pienaar# The default value is: http://cdn.mathjax.org/mathjax/latest. 1434e298e216SJacques Pienaar# This tag requires that the tag USE_MATHJAX is set to YES. 1435e298e216SJacques Pienaar 1436e298e216SJacques PienaarMATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest 1437e298e216SJacques Pienaar 1438e298e216SJacques Pienaar# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax 1439e298e216SJacques Pienaar# extension names that should be enabled during MathJax rendering. For example 1440e298e216SJacques Pienaar# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols 1441e298e216SJacques Pienaar# This tag requires that the tag USE_MATHJAX is set to YES. 1442e298e216SJacques Pienaar 1443e298e216SJacques PienaarMATHJAX_EXTENSIONS = 1444e298e216SJacques Pienaar 1445e298e216SJacques Pienaar# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces 1446e298e216SJacques Pienaar# of code that will be used on startup of the MathJax code. See the MathJax site 1447e298e216SJacques Pienaar# (see: http://docs.mathjax.org/en/latest/output.html) for more details. For an 1448e298e216SJacques Pienaar# example see the documentation. 1449e298e216SJacques Pienaar# This tag requires that the tag USE_MATHJAX is set to YES. 1450e298e216SJacques Pienaar 1451e298e216SJacques PienaarMATHJAX_CODEFILE = 1452e298e216SJacques Pienaar 1453e298e216SJacques Pienaar# When the SEARCHENGINE tag is enabled doxygen will generate a search box for 1454e298e216SJacques Pienaar# the HTML output. The underlying search engine uses javascript and DHTML and 1455e298e216SJacques Pienaar# should work on any modern browser. Note that when using HTML help 1456e298e216SJacques Pienaar# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET) 1457e298e216SJacques Pienaar# there is already a search function so this one should typically be disabled. 1458e298e216SJacques Pienaar# For large projects the javascript based search engine can be slow, then 1459e298e216SJacques Pienaar# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to 1460e298e216SJacques Pienaar# search using the keyboard; to jump to the search box use <access key> + S 1461e298e216SJacques Pienaar# (what the <access key> is depends on the OS and browser, but it is typically 1462e298e216SJacques Pienaar# <CTRL>, <ALT>/<option>, or both). Inside the search box use the <cursor down 1463e298e216SJacques Pienaar# key> to jump into the search results window, the results can be navigated 1464e298e216SJacques Pienaar# using the <cursor keys>. Press <Enter> to select an item or <escape> to cancel 1465e298e216SJacques Pienaar# the search. The filter options can be selected when the cursor is inside the 1466e298e216SJacques Pienaar# search box by pressing <Shift>+<cursor down>. Also here use the <cursor keys> 1467e298e216SJacques Pienaar# to select a filter and <Enter> or <escape> to activate or cancel the filter 1468e298e216SJacques Pienaar# option. 1469e298e216SJacques Pienaar# The default value is: YES. 1470e298e216SJacques Pienaar# This tag requires that the tag GENERATE_HTML is set to YES. 1471e298e216SJacques Pienaar 1472e298e216SJacques PienaarSEARCHENGINE = @enable_searchengine@ 1473e298e216SJacques Pienaar 1474e298e216SJacques Pienaar# When the SERVER_BASED_SEARCH tag is enabled the search engine will be 1475e298e216SJacques Pienaar# implemented using a web server instead of a web client using Javascript. There 1476e298e216SJacques Pienaar# are two flavours of web server based searching depending on the 1477e298e216SJacques Pienaar# EXTERNAL_SEARCH setting. When disabled, doxygen will generate a PHP script for 1478e298e216SJacques Pienaar# searching and an index file used by the script. When EXTERNAL_SEARCH is 1479e298e216SJacques Pienaar# enabled the indexing and searching needs to be provided by external tools. See 1480e298e216SJacques Pienaar# the section "External Indexing and Searching" for details. 1481e298e216SJacques Pienaar# The default value is: NO. 1482e298e216SJacques Pienaar# This tag requires that the tag SEARCHENGINE is set to YES. 1483e298e216SJacques Pienaar 1484e298e216SJacques PienaarSERVER_BASED_SEARCH = @enable_server_based_search@ 1485e298e216SJacques Pienaar 1486e298e216SJacques Pienaar# When EXTERNAL_SEARCH tag is enabled doxygen will no longer generate the PHP 1487e298e216SJacques Pienaar# script for searching. Instead the search results are written to an XML file 1488e298e216SJacques Pienaar# which needs to be processed by an external indexer. Doxygen will invoke an 1489e298e216SJacques Pienaar# external search engine pointed to by the SEARCHENGINE_URL option to obtain the 1490e298e216SJacques Pienaar# search results. 1491e298e216SJacques Pienaar# 1492e298e216SJacques Pienaar# Doxygen ships with an example indexer ( doxyindexer) and search engine 1493e298e216SJacques Pienaar# (doxysearch.cgi) which are based on the open source search engine library 1494e298e216SJacques Pienaar# Xapian (see: http://xapian.org/). 1495e298e216SJacques Pienaar# 1496e298e216SJacques Pienaar# See the section "External Indexing and Searching" for details. 1497e298e216SJacques Pienaar# The default value is: NO. 1498e298e216SJacques Pienaar# This tag requires that the tag SEARCHENGINE is set to YES. 1499e298e216SJacques Pienaar 1500e298e216SJacques PienaarEXTERNAL_SEARCH = @enable_external_search@ 1501e298e216SJacques Pienaar 1502e298e216SJacques Pienaar# The SEARCHENGINE_URL should point to a search engine hosted by a web server 1503e298e216SJacques Pienaar# which will return the search results when EXTERNAL_SEARCH is enabled. 1504e298e216SJacques Pienaar# 1505e298e216SJacques Pienaar# Doxygen ships with an example indexer ( doxyindexer) and search engine 1506e298e216SJacques Pienaar# (doxysearch.cgi) which are based on the open source search engine library 1507e298e216SJacques Pienaar# Xapian (see: http://xapian.org/). See the section "External Indexing and 1508e298e216SJacques Pienaar# Searching" for details. 1509e298e216SJacques Pienaar# This tag requires that the tag SEARCHENGINE is set to YES. 1510e298e216SJacques Pienaar 1511e298e216SJacques PienaarSEARCHENGINE_URL = @searchengine_url@ 1512e298e216SJacques Pienaar 1513e298e216SJacques Pienaar# When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the unindexed 1514e298e216SJacques Pienaar# search data is written to a file for indexing by an external tool. With the 1515e298e216SJacques Pienaar# SEARCHDATA_FILE tag the name of this file can be specified. 1516e298e216SJacques Pienaar# The default file is: searchdata.xml. 1517e298e216SJacques Pienaar# This tag requires that the tag SEARCHENGINE is set to YES. 1518e298e216SJacques Pienaar 1519e298e216SJacques PienaarSEARCHDATA_FILE = searchdata.xml 1520e298e216SJacques Pienaar 1521e298e216SJacques Pienaar# When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the 1522e298e216SJacques Pienaar# EXTERNAL_SEARCH_ID tag can be used as an identifier for the project. This is 1523e298e216SJacques Pienaar# useful in combination with EXTRA_SEARCH_MAPPINGS to search through multiple 1524e298e216SJacques Pienaar# projects and redirect the results back to the right project. 1525e298e216SJacques Pienaar# This tag requires that the tag SEARCHENGINE is set to YES. 1526e298e216SJacques Pienaar 1527e298e216SJacques PienaarEXTERNAL_SEARCH_ID = llvm 1528e298e216SJacques Pienaar 1529e298e216SJacques Pienaar# The EXTRA_SEARCH_MAPPINGS tag can be used to enable searching through doxygen 1530e298e216SJacques Pienaar# projects other than the one defined by this configuration file, but that are 1531e298e216SJacques Pienaar# all added to the same external search index. Each project needs to have a 1532e298e216SJacques Pienaar# unique id set via EXTERNAL_SEARCH_ID. The search mapping then maps the id of 1533e298e216SJacques Pienaar# to a relative location where the documentation can be found. The format is: 1534e298e216SJacques Pienaar# EXTRA_SEARCH_MAPPINGS = tagname1=loc1 tagname2=loc2 ... 1535e298e216SJacques Pienaar# This tag requires that the tag SEARCHENGINE is set to YES. 1536e298e216SJacques Pienaar 1537e298e216SJacques PienaarEXTRA_SEARCH_MAPPINGS = @extra_search_mappings@ 1538e298e216SJacques Pienaar 1539e298e216SJacques Pienaar#--------------------------------------------------------------------------- 1540e298e216SJacques Pienaar# Configuration options related to the LaTeX output 1541e298e216SJacques Pienaar#--------------------------------------------------------------------------- 1542e298e216SJacques Pienaar 1543e298e216SJacques Pienaar# If the GENERATE_LATEX tag is set to YES doxygen will generate LaTeX output. 1544e298e216SJacques Pienaar# The default value is: YES. 1545e298e216SJacques Pienaar 1546e298e216SJacques PienaarGENERATE_LATEX = NO 1547e298e216SJacques Pienaar 1548e298e216SJacques Pienaar# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. If a 1549e298e216SJacques Pienaar# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of 1550e298e216SJacques Pienaar# it. 1551e298e216SJacques Pienaar# The default directory is: latex. 1552e298e216SJacques Pienaar# This tag requires that the tag GENERATE_LATEX is set to YES. 1553e298e216SJacques Pienaar 1554e298e216SJacques PienaarLATEX_OUTPUT = latex 1555e298e216SJacques Pienaar 1556e298e216SJacques Pienaar# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be 1557e298e216SJacques Pienaar# invoked. 1558e298e216SJacques Pienaar# 1559e298e216SJacques Pienaar# Note that when enabling USE_PDFLATEX this option is only used for generating 1560e298e216SJacques Pienaar# bitmaps for formulas in the HTML output, but not in the Makefile that is 1561e298e216SJacques Pienaar# written to the output directory. 1562e298e216SJacques Pienaar# The default file is: latex. 1563e298e216SJacques Pienaar# This tag requires that the tag GENERATE_LATEX is set to YES. 1564e298e216SJacques Pienaar 1565e298e216SJacques PienaarLATEX_CMD_NAME = latex 1566e298e216SJacques Pienaar 1567e298e216SJacques Pienaar# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to generate 1568e298e216SJacques Pienaar# index for LaTeX. 1569e298e216SJacques Pienaar# The default file is: makeindex. 1570e298e216SJacques Pienaar# This tag requires that the tag GENERATE_LATEX is set to YES. 1571e298e216SJacques Pienaar 1572e298e216SJacques PienaarMAKEINDEX_CMD_NAME = makeindex 1573e298e216SJacques Pienaar 1574e298e216SJacques Pienaar# If the COMPACT_LATEX tag is set to YES doxygen generates more compact LaTeX 1575e298e216SJacques Pienaar# documents. This may be useful for small projects and may help to save some 1576e298e216SJacques Pienaar# trees in general. 1577e298e216SJacques Pienaar# The default value is: NO. 1578e298e216SJacques Pienaar# This tag requires that the tag GENERATE_LATEX is set to YES. 1579e298e216SJacques Pienaar 1580e298e216SJacques PienaarCOMPACT_LATEX = NO 1581e298e216SJacques Pienaar 1582e298e216SJacques Pienaar# The PAPER_TYPE tag can be used to set the paper type that is used by the 1583e298e216SJacques Pienaar# printer. 1584e298e216SJacques Pienaar# Possible values are: a4 (210 x 297 mm), letter (8.5 x 11 inches), legal (8.5 x 1585e298e216SJacques Pienaar# 14 inches) and executive (7.25 x 10.5 inches). 1586e298e216SJacques Pienaar# The default value is: a4. 1587e298e216SJacques Pienaar# This tag requires that the tag GENERATE_LATEX is set to YES. 1588e298e216SJacques Pienaar 1589e298e216SJacques PienaarPAPER_TYPE = a4 1590e298e216SJacques Pienaar 1591e298e216SJacques Pienaar# The EXTRA_PACKAGES tag can be used to specify one or more LaTeX package names 1592e298e216SJacques Pienaar# that should be included in the LaTeX output. To get the times font for 1593e298e216SJacques Pienaar# instance you can specify 1594e298e216SJacques Pienaar# EXTRA_PACKAGES=times 1595e298e216SJacques Pienaar# If left blank no extra packages will be included. 1596e298e216SJacques Pienaar# This tag requires that the tag GENERATE_LATEX is set to YES. 1597e298e216SJacques Pienaar 1598e298e216SJacques PienaarEXTRA_PACKAGES = 1599e298e216SJacques Pienaar 1600e298e216SJacques Pienaar# The LATEX_HEADER tag can be used to specify a personal LaTeX header for the 1601e298e216SJacques Pienaar# generated LaTeX document. The header should contain everything until the first 1602e298e216SJacques Pienaar# chapter. If it is left blank doxygen will generate a standard header. See 1603e298e216SJacques Pienaar# section "Doxygen usage" for information on how to let doxygen write the 1604e298e216SJacques Pienaar# default header to a separate file. 1605e298e216SJacques Pienaar# 1606e298e216SJacques Pienaar# Note: Only use a user-defined header if you know what you are doing! The 1607e298e216SJacques Pienaar# following commands have a special meaning inside the header: $title, 1608e298e216SJacques Pienaar# $datetime, $date, $doxygenversion, $projectname, $projectnumber. Doxygen will 1609e298e216SJacques Pienaar# replace them by respectively the title of the page, the current date and time, 1610e298e216SJacques Pienaar# only the current date, the version number of doxygen, the project name (see 1611e298e216SJacques Pienaar# PROJECT_NAME), or the project number (see PROJECT_NUMBER). 1612e298e216SJacques Pienaar# This tag requires that the tag GENERATE_LATEX is set to YES. 1613e298e216SJacques Pienaar 1614e298e216SJacques PienaarLATEX_HEADER = 1615e298e216SJacques Pienaar 1616e298e216SJacques Pienaar# The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for the 1617e298e216SJacques Pienaar# generated LaTeX document. The footer should contain everything after the last 1618e298e216SJacques Pienaar# chapter. If it is left blank doxygen will generate a standard footer. 1619e298e216SJacques Pienaar# 1620e298e216SJacques Pienaar# Note: Only use a user-defined footer if you know what you are doing! 1621e298e216SJacques Pienaar# This tag requires that the tag GENERATE_LATEX is set to YES. 1622e298e216SJacques Pienaar 1623e298e216SJacques PienaarLATEX_FOOTER = 1624e298e216SJacques Pienaar 1625e298e216SJacques Pienaar# The LATEX_EXTRA_FILES tag can be used to specify one or more extra images or 1626e298e216SJacques Pienaar# other source files which should be copied to the LATEX_OUTPUT output 1627e298e216SJacques Pienaar# directory. Note that the files will be copied as-is; there are no commands or 1628e298e216SJacques Pienaar# markers available. 1629e298e216SJacques Pienaar# This tag requires that the tag GENERATE_LATEX is set to YES. 1630e298e216SJacques Pienaar 1631e298e216SJacques PienaarLATEX_EXTRA_FILES = 1632e298e216SJacques Pienaar 1633e298e216SJacques Pienaar# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated is 1634e298e216SJacques Pienaar# prepared for conversion to PDF (using ps2pdf or pdflatex). The PDF file will 1635e298e216SJacques Pienaar# contain links (just like the HTML output) instead of page references. This 1636e298e216SJacques Pienaar# makes the output suitable for online browsing using a PDF viewer. 1637e298e216SJacques Pienaar# The default value is: YES. 1638e298e216SJacques Pienaar# This tag requires that the tag GENERATE_LATEX is set to YES. 1639e298e216SJacques Pienaar 1640e298e216SJacques PienaarPDF_HYPERLINKS = YES 1641e298e216SJacques Pienaar 1642e298e216SJacques Pienaar# If the LATEX_PDFLATEX tag is set to YES, doxygen will use pdflatex to generate 1643e298e216SJacques Pienaar# the PDF file directly from the LaTeX files. Set this option to YES to get a 1644e298e216SJacques Pienaar# higher quality PDF documentation. 1645e298e216SJacques Pienaar# The default value is: YES. 1646e298e216SJacques Pienaar# This tag requires that the tag GENERATE_LATEX is set to YES. 1647e298e216SJacques Pienaar 1648e298e216SJacques PienaarUSE_PDFLATEX = YES 1649e298e216SJacques Pienaar 1650e298e216SJacques Pienaar# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \batchmode 1651e298e216SJacques Pienaar# command to the generated LaTeX files. This will instruct LaTeX to keep running 1652e298e216SJacques Pienaar# if errors occur, instead of asking the user for help. This option is also used 1653e298e216SJacques Pienaar# when generating formulas in HTML. 1654e298e216SJacques Pienaar# The default value is: NO. 1655e298e216SJacques Pienaar# This tag requires that the tag GENERATE_LATEX is set to YES. 1656e298e216SJacques Pienaar 1657e298e216SJacques PienaarLATEX_BATCHMODE = NO 1658e298e216SJacques Pienaar 1659e298e216SJacques Pienaar# If the LATEX_HIDE_INDICES tag is set to YES then doxygen will not include the 1660e298e216SJacques Pienaar# index chapters (such as File Index, Compound Index, etc.) in the output. 1661e298e216SJacques Pienaar# The default value is: NO. 1662e298e216SJacques Pienaar# This tag requires that the tag GENERATE_LATEX is set to YES. 1663e298e216SJacques Pienaar 1664e298e216SJacques PienaarLATEX_HIDE_INDICES = NO 1665e298e216SJacques Pienaar 1666e298e216SJacques Pienaar# If the LATEX_SOURCE_CODE tag is set to YES then doxygen will include source 1667e298e216SJacques Pienaar# code with syntax highlighting in the LaTeX output. 1668e298e216SJacques Pienaar# 1669e298e216SJacques Pienaar# Note that which sources are shown also depends on other settings such as 1670e298e216SJacques Pienaar# SOURCE_BROWSER. 1671e298e216SJacques Pienaar# The default value is: NO. 1672e298e216SJacques Pienaar# This tag requires that the tag GENERATE_LATEX is set to YES. 1673e298e216SJacques Pienaar 1674e298e216SJacques PienaarLATEX_SOURCE_CODE = NO 1675e298e216SJacques Pienaar 1676e298e216SJacques Pienaar# The LATEX_BIB_STYLE tag can be used to specify the style to use for the 1677e298e216SJacques Pienaar# bibliography, e.g. plainnat, or ieeetr. See 1678e298e216SJacques Pienaar# http://en.wikipedia.org/wiki/BibTeX and \cite for more info. 1679e298e216SJacques Pienaar# The default value is: plain. 1680e298e216SJacques Pienaar# This tag requires that the tag GENERATE_LATEX is set to YES. 1681e298e216SJacques Pienaar 1682e298e216SJacques PienaarLATEX_BIB_STYLE = plain 1683e298e216SJacques Pienaar 1684e298e216SJacques Pienaar#--------------------------------------------------------------------------- 1685e298e216SJacques Pienaar# Configuration options related to the RTF output 1686e298e216SJacques Pienaar#--------------------------------------------------------------------------- 1687e298e216SJacques Pienaar 1688e298e216SJacques Pienaar# If the GENERATE_RTF tag is set to YES doxygen will generate RTF output. The 1689e298e216SJacques Pienaar# RTF output is optimized for Word 97 and may not look too pretty with other RTF 1690e298e216SJacques Pienaar# readers/editors. 1691e298e216SJacques Pienaar# The default value is: NO. 1692e298e216SJacques Pienaar 1693e298e216SJacques PienaarGENERATE_RTF = NO 1694e298e216SJacques Pienaar 1695e298e216SJacques Pienaar# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. If a 1696e298e216SJacques Pienaar# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of 1697e298e216SJacques Pienaar# it. 1698e298e216SJacques Pienaar# The default directory is: rtf. 1699e298e216SJacques Pienaar# This tag requires that the tag GENERATE_RTF is set to YES. 1700e298e216SJacques Pienaar 1701e298e216SJacques PienaarRTF_OUTPUT = rtf 1702e298e216SJacques Pienaar 1703e298e216SJacques Pienaar# If the COMPACT_RTF tag is set to YES doxygen generates more compact RTF 1704e298e216SJacques Pienaar# documents. This may be useful for small projects and may help to save some 1705e298e216SJacques Pienaar# trees in general. 1706e298e216SJacques Pienaar# The default value is: NO. 1707e298e216SJacques Pienaar# This tag requires that the tag GENERATE_RTF is set to YES. 1708e298e216SJacques Pienaar 1709e298e216SJacques PienaarCOMPACT_RTF = NO 1710e298e216SJacques Pienaar 1711e298e216SJacques Pienaar# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated will 1712e298e216SJacques Pienaar# contain hyperlink fields. The RTF file will contain links (just like the HTML 1713e298e216SJacques Pienaar# output) instead of page references. This makes the output suitable for online 1714e298e216SJacques Pienaar# browsing using Word or some other Word compatible readers that support those 1715e298e216SJacques Pienaar# fields. 1716e298e216SJacques Pienaar# 1717e298e216SJacques Pienaar# Note: WordPad (write) and others do not support links. 1718e298e216SJacques Pienaar# The default value is: NO. 1719e298e216SJacques Pienaar# This tag requires that the tag GENERATE_RTF is set to YES. 1720e298e216SJacques Pienaar 1721e298e216SJacques PienaarRTF_HYPERLINKS = NO 1722e298e216SJacques Pienaar 1723e298e216SJacques Pienaar# Load stylesheet definitions from file. Syntax is similar to doxygen's config 1724e298e216SJacques Pienaar# file, i.e. a series of assignments. You only have to provide replacements, 1725e298e216SJacques Pienaar# missing definitions are set to their default value. 1726e298e216SJacques Pienaar# 1727e298e216SJacques Pienaar# See also section "Doxygen usage" for information on how to generate the 1728e298e216SJacques Pienaar# default style sheet that doxygen normally uses. 1729e298e216SJacques Pienaar# This tag requires that the tag GENERATE_RTF is set to YES. 1730e298e216SJacques Pienaar 1731e298e216SJacques PienaarRTF_STYLESHEET_FILE = 1732e298e216SJacques Pienaar 1733e298e216SJacques Pienaar# Set optional variables used in the generation of an RTF document. Syntax is 1734e298e216SJacques Pienaar# similar to doxygen's config file. A template extensions file can be generated 1735e298e216SJacques Pienaar# using doxygen -e rtf extensionFile. 1736e298e216SJacques Pienaar# This tag requires that the tag GENERATE_RTF is set to YES. 1737e298e216SJacques Pienaar 1738e298e216SJacques PienaarRTF_EXTENSIONS_FILE = 1739e298e216SJacques Pienaar 1740e298e216SJacques Pienaar#--------------------------------------------------------------------------- 1741e298e216SJacques Pienaar# Configuration options related to the man page output 1742e298e216SJacques Pienaar#--------------------------------------------------------------------------- 1743e298e216SJacques Pienaar 1744e298e216SJacques Pienaar# If the GENERATE_MAN tag is set to YES doxygen will generate man pages for 1745e298e216SJacques Pienaar# classes and files. 1746e298e216SJacques Pienaar# The default value is: NO. 1747e298e216SJacques Pienaar 1748e298e216SJacques PienaarGENERATE_MAN = NO 1749e298e216SJacques Pienaar 1750e298e216SJacques Pienaar# The MAN_OUTPUT tag is used to specify where the man pages will be put. If a 1751e298e216SJacques Pienaar# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of 1752e298e216SJacques Pienaar# it. A directory man3 will be created inside the directory specified by 1753e298e216SJacques Pienaar# MAN_OUTPUT. 1754e298e216SJacques Pienaar# The default directory is: man. 1755e298e216SJacques Pienaar# This tag requires that the tag GENERATE_MAN is set to YES. 1756e298e216SJacques Pienaar 1757e298e216SJacques PienaarMAN_OUTPUT = man 1758e298e216SJacques Pienaar 1759e298e216SJacques Pienaar# The MAN_EXTENSION tag determines the extension that is added to the generated 1760e298e216SJacques Pienaar# man pages. In case the manual section does not start with a number, the number 1761e298e216SJacques Pienaar# 3 is prepended. The dot (.) at the beginning of the MAN_EXTENSION tag is 1762e298e216SJacques Pienaar# optional. 1763e298e216SJacques Pienaar# The default value is: .3. 1764e298e216SJacques Pienaar# This tag requires that the tag GENERATE_MAN is set to YES. 1765e298e216SJacques Pienaar 1766e298e216SJacques PienaarMAN_EXTENSION = .3 1767e298e216SJacques Pienaar 1768e298e216SJacques Pienaar# If the MAN_LINKS tag is set to YES and doxygen generates man output, then it 1769e298e216SJacques Pienaar# will generate one additional man file for each entity documented in the real 1770e298e216SJacques Pienaar# man page(s). These additional files only source the real man page, but without 1771e298e216SJacques Pienaar# them the man command would be unable to find the correct page. 1772e298e216SJacques Pienaar# The default value is: NO. 1773e298e216SJacques Pienaar# This tag requires that the tag GENERATE_MAN is set to YES. 1774e298e216SJacques Pienaar 1775e298e216SJacques PienaarMAN_LINKS = NO 1776e298e216SJacques Pienaar 1777e298e216SJacques Pienaar#--------------------------------------------------------------------------- 1778e298e216SJacques Pienaar# Configuration options related to the XML output 1779e298e216SJacques Pienaar#--------------------------------------------------------------------------- 1780e298e216SJacques Pienaar 1781e298e216SJacques Pienaar# If the GENERATE_XML tag is set to YES doxygen will generate an XML file that 1782e298e216SJacques Pienaar# captures the structure of the code including all documentation. 1783e298e216SJacques Pienaar# The default value is: NO. 1784e298e216SJacques Pienaar 1785e298e216SJacques PienaarGENERATE_XML = NO 1786e298e216SJacques Pienaar 1787e298e216SJacques Pienaar# The XML_OUTPUT tag is used to specify where the XML pages will be put. If a 1788e298e216SJacques Pienaar# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of 1789e298e216SJacques Pienaar# it. 1790e298e216SJacques Pienaar# The default directory is: xml. 1791e298e216SJacques Pienaar# This tag requires that the tag GENERATE_XML is set to YES. 1792e298e216SJacques Pienaar 1793e298e216SJacques PienaarXML_OUTPUT = xml 1794e298e216SJacques Pienaar 1795e298e216SJacques Pienaar# If the XML_PROGRAMLISTING tag is set to YES doxygen will dump the program 1796e298e216SJacques Pienaar# listings (including syntax highlighting and cross-referencing information) to 1797e298e216SJacques Pienaar# the XML output. Note that enabling this will significantly increase the size 1798e298e216SJacques Pienaar# of the XML output. 1799e298e216SJacques Pienaar# The default value is: YES. 1800e298e216SJacques Pienaar# This tag requires that the tag GENERATE_XML is set to YES. 1801e298e216SJacques Pienaar 1802e298e216SJacques PienaarXML_PROGRAMLISTING = YES 1803e298e216SJacques Pienaar 1804e298e216SJacques Pienaar#--------------------------------------------------------------------------- 1805e298e216SJacques Pienaar# Configuration options related to the DOCBOOK output 1806e298e216SJacques Pienaar#--------------------------------------------------------------------------- 1807e298e216SJacques Pienaar 1808e298e216SJacques Pienaar# If the GENERATE_DOCBOOK tag is set to YES doxygen will generate Docbook files 1809e298e216SJacques Pienaar# that can be used to generate PDF. 1810e298e216SJacques Pienaar# The default value is: NO. 1811e298e216SJacques Pienaar 1812e298e216SJacques PienaarGENERATE_DOCBOOK = NO 1813e298e216SJacques Pienaar 1814e298e216SJacques Pienaar# The DOCBOOK_OUTPUT tag is used to specify where the Docbook pages will be put. 1815e298e216SJacques Pienaar# If a relative path is entered the value of OUTPUT_DIRECTORY will be put in 1816e298e216SJacques Pienaar# front of it. 1817e298e216SJacques Pienaar# The default directory is: docbook. 1818e298e216SJacques Pienaar# This tag requires that the tag GENERATE_DOCBOOK is set to YES. 1819e298e216SJacques Pienaar 1820e298e216SJacques PienaarDOCBOOK_OUTPUT = docbook 1821e298e216SJacques Pienaar 1822e298e216SJacques Pienaar#--------------------------------------------------------------------------- 1823e298e216SJacques Pienaar# Configuration options for the AutoGen Definitions output 1824e298e216SJacques Pienaar#--------------------------------------------------------------------------- 1825e298e216SJacques Pienaar 1826e298e216SJacques Pienaar# If the GENERATE_AUTOGEN_DEF tag is set to YES doxygen will generate an AutoGen 1827e298e216SJacques Pienaar# Definitions (see http://autogen.sf.net) file that captures the structure of 1828e298e216SJacques Pienaar# the code including all documentation. Note that this feature is still 1829e298e216SJacques Pienaar# experimental and incomplete at the moment. 1830e298e216SJacques Pienaar# The default value is: NO. 1831e298e216SJacques Pienaar 1832e298e216SJacques PienaarGENERATE_AUTOGEN_DEF = NO 1833e298e216SJacques Pienaar 1834e298e216SJacques Pienaar#--------------------------------------------------------------------------- 1835e298e216SJacques Pienaar# Configuration options related to the Perl module output 1836e298e216SJacques Pienaar#--------------------------------------------------------------------------- 1837e298e216SJacques Pienaar 1838e298e216SJacques Pienaar# If the GENERATE_PERLMOD tag is set to YES doxygen will generate a Perl module 1839e298e216SJacques Pienaar# file that captures the structure of the code including all documentation. 1840e298e216SJacques Pienaar# 1841e298e216SJacques Pienaar# Note that this feature is still experimental and incomplete at the moment. 1842e298e216SJacques Pienaar# The default value is: NO. 1843e298e216SJacques Pienaar 1844e298e216SJacques PienaarGENERATE_PERLMOD = NO 1845e298e216SJacques Pienaar 1846e298e216SJacques Pienaar# If the PERLMOD_LATEX tag is set to YES doxygen will generate the necessary 1847e298e216SJacques Pienaar# Makefile rules, Perl scripts and LaTeX code to be able to generate PDF and DVI 1848e298e216SJacques Pienaar# output from the Perl module output. 1849e298e216SJacques Pienaar# The default value is: NO. 1850e298e216SJacques Pienaar# This tag requires that the tag GENERATE_PERLMOD is set to YES. 1851e298e216SJacques Pienaar 1852e298e216SJacques PienaarPERLMOD_LATEX = NO 1853e298e216SJacques Pienaar 1854e298e216SJacques Pienaar# If the PERLMOD_PRETTY tag is set to YES the Perl module output will be nicely 1855e298e216SJacques Pienaar# formatted so it can be parsed by a human reader. This is useful if you want to 1856e298e216SJacques Pienaar# understand what is going on. On the other hand, if this tag is set to NO the 1857e298e216SJacques Pienaar# size of the Perl module output will be much smaller and Perl will parse it 1858e298e216SJacques Pienaar# just the same. 1859e298e216SJacques Pienaar# The default value is: YES. 1860e298e216SJacques Pienaar# This tag requires that the tag GENERATE_PERLMOD is set to YES. 1861e298e216SJacques Pienaar 1862e298e216SJacques PienaarPERLMOD_PRETTY = YES 1863e298e216SJacques Pienaar 1864e298e216SJacques Pienaar# The names of the make variables in the generated doxyrules.make file are 1865e298e216SJacques Pienaar# prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. This is useful 1866e298e216SJacques Pienaar# so different doxyrules.make files included by the same Makefile don't 1867e298e216SJacques Pienaar# overwrite each other's variables. 1868e298e216SJacques Pienaar# This tag requires that the tag GENERATE_PERLMOD is set to YES. 1869e298e216SJacques Pienaar 1870e298e216SJacques PienaarPERLMOD_MAKEVAR_PREFIX = 1871e298e216SJacques Pienaar 1872e298e216SJacques Pienaar#--------------------------------------------------------------------------- 1873e298e216SJacques Pienaar# Configuration options related to the preprocessor 1874e298e216SJacques Pienaar#--------------------------------------------------------------------------- 1875e298e216SJacques Pienaar 1876e298e216SJacques Pienaar# If the ENABLE_PREPROCESSING tag is set to YES doxygen will evaluate all 1877e298e216SJacques Pienaar# C-preprocessor directives found in the sources and include files. 1878e298e216SJacques Pienaar# The default value is: YES. 1879e298e216SJacques Pienaar 1880e298e216SJacques PienaarENABLE_PREPROCESSING = YES 1881e298e216SJacques Pienaar 1882e298e216SJacques Pienaar# If the MACRO_EXPANSION tag is set to YES doxygen will expand all macro names 1883e298e216SJacques Pienaar# in the source code. If set to NO only conditional compilation will be 1884e298e216SJacques Pienaar# performed. Macro expansion can be done in a controlled way by setting 1885e298e216SJacques Pienaar# EXPAND_ONLY_PREDEF to YES. 1886e298e216SJacques Pienaar# The default value is: NO. 1887e298e216SJacques Pienaar# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. 1888e298e216SJacques Pienaar 1889e298e216SJacques PienaarMACRO_EXPANSION = YES 1890e298e216SJacques Pienaar 1891e298e216SJacques Pienaar# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES then 1892e298e216SJacques Pienaar# the macro expansion is limited to the macros specified with the PREDEFINED and 1893e298e216SJacques Pienaar# EXPAND_AS_DEFINED tags. 1894e298e216SJacques Pienaar# The default value is: NO. 1895e298e216SJacques Pienaar# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. 1896e298e216SJacques Pienaar 1897e298e216SJacques PienaarEXPAND_ONLY_PREDEF = YES 1898e298e216SJacques Pienaar 1899e298e216SJacques Pienaar# If the SEARCH_INCLUDES tag is set to YES the includes files in the 1900e298e216SJacques Pienaar# INCLUDE_PATH will be searched if a #include is found. 1901e298e216SJacques Pienaar# The default value is: YES. 1902e298e216SJacques Pienaar# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. 1903e298e216SJacques Pienaar 1904e298e216SJacques PienaarSEARCH_INCLUDES = YES 1905e298e216SJacques Pienaar 1906e298e216SJacques Pienaar# The INCLUDE_PATH tag can be used to specify one or more directories that 1907e298e216SJacques Pienaar# contain include files that are not input files but should be processed by the 1908e298e216SJacques Pienaar# preprocessor. 1909e298e216SJacques Pienaar# This tag requires that the tag SEARCH_INCLUDES is set to YES. 1910e298e216SJacques Pienaar 1911e298e216SJacques PienaarINCLUDE_PATH = ../include 1912e298e216SJacques Pienaar 1913e298e216SJacques Pienaar# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard 1914e298e216SJacques Pienaar# patterns (like *.h and *.hpp) to filter out the header-files in the 1915e298e216SJacques Pienaar# directories. If left blank, the patterns specified with FILE_PATTERNS will be 1916e298e216SJacques Pienaar# used. 1917e298e216SJacques Pienaar# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. 1918e298e216SJacques Pienaar 1919e298e216SJacques PienaarINCLUDE_FILE_PATTERNS = 1920e298e216SJacques Pienaar 1921e298e216SJacques Pienaar# The PREDEFINED tag can be used to specify one or more macro names that are 1922e298e216SJacques Pienaar# defined before the preprocessor is started (similar to the -D option of e.g. 1923e298e216SJacques Pienaar# gcc). The argument of the tag is a list of macros of the form: name or 1924e298e216SJacques Pienaar# name=definition (no spaces). If the definition and the "=" are omitted, "=1" 1925e298e216SJacques Pienaar# is assumed. To prevent a macro definition from being undefined via #undef or 1926e298e216SJacques Pienaar# recursively expanded use the := operator instead of the = operator. 1927e298e216SJacques Pienaar# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. 1928e298e216SJacques Pienaar 1929e298e216SJacques PienaarPREDEFINED = 1930e298e216SJacques Pienaar 1931e298e216SJacques Pienaar# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this 1932e298e216SJacques Pienaar# tag can be used to specify a list of macro names that should be expanded. The 1933e298e216SJacques Pienaar# macro definition that is found in the sources will be used. Use the PREDEFINED 1934e298e216SJacques Pienaar# tag if you want to use a different macro definition that overrules the 1935e298e216SJacques Pienaar# definition found in the source code. 1936e298e216SJacques Pienaar# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. 1937e298e216SJacques Pienaar 1938e298e216SJacques PienaarEXPAND_AS_DEFINED = 1939e298e216SJacques Pienaar 1940e298e216SJacques Pienaar# If the SKIP_FUNCTION_MACROS tag is set to YES then doxygen's preprocessor will 1941e298e216SJacques Pienaar# remove all references to function-like macros that are alone on a line, have an 1942e298e216SJacques Pienaar# all uppercase name, and do not end with a semicolon. Such function macros are 1943e298e216SJacques Pienaar# typically used for boiler-plate code, and will confuse the parser if not 1944e298e216SJacques Pienaar# removed. 1945e298e216SJacques Pienaar# The default value is: YES. 1946e298e216SJacques Pienaar# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. 1947e298e216SJacques Pienaar 1948e298e216SJacques PienaarSKIP_FUNCTION_MACROS = YES 1949e298e216SJacques Pienaar 1950e298e216SJacques Pienaar#--------------------------------------------------------------------------- 1951e298e216SJacques Pienaar# Configuration options related to external references 1952e298e216SJacques Pienaar#--------------------------------------------------------------------------- 1953e298e216SJacques Pienaar 1954e298e216SJacques Pienaar# The TAGFILES tag can be used to specify one or more tag files. For each tag 1955e298e216SJacques Pienaar# file the location of the external documentation should be added. The format of 1956e298e216SJacques Pienaar# a tag file without this location is as follows: 1957e298e216SJacques Pienaar# TAGFILES = file1 file2 ... 1958e298e216SJacques Pienaar# Adding location for the tag files is done as follows: 1959e298e216SJacques Pienaar# TAGFILES = file1=loc1 "file2 = loc2" ... 1960e298e216SJacques Pienaar# where loc1 and loc2 can be relative or absolute paths or URLs. See the 1961e298e216SJacques Pienaar# section "Linking to external documentation" for more information about the use 1962e298e216SJacques Pienaar# of tag files. 1963e298e216SJacques Pienaar# Note: Each tag file must have an unique name (where the name does NOT include 1964e298e216SJacques Pienaar# the path). If a tag file is not located in the directory in which doxygen is 1965e298e216SJacques Pienaar# run, you must also specify the path to the tagfile here. 1966e298e216SJacques Pienaar 1967e298e216SJacques PienaarTAGFILES = 1968e298e216SJacques Pienaar 1969e298e216SJacques Pienaar# When a file name is specified after GENERATE_TAGFILE, doxygen will create a 1970e298e216SJacques Pienaar# tag file that is based on the input files it reads. See section "Linking to 1971e298e216SJacques Pienaar# external documentation" for more information about the usage of tag files. 1972e298e216SJacques Pienaar 1973e298e216SJacques PienaarGENERATE_TAGFILE = 1974e298e216SJacques Pienaar 1975e298e216SJacques Pienaar# If the ALLEXTERNALS tag is set to YES all external class will be listed in the 1976e298e216SJacques Pienaar# class index. If set to NO only the inherited external classes will be listed. 1977e298e216SJacques Pienaar# The default value is: NO. 1978e298e216SJacques Pienaar 1979e298e216SJacques PienaarALLEXTERNALS = YES 1980e298e216SJacques Pienaar 1981e298e216SJacques Pienaar# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed in 1982e298e216SJacques Pienaar# the modules index. If set to NO, only the current project's groups will be 1983e298e216SJacques Pienaar# listed. 1984e298e216SJacques Pienaar# The default value is: YES. 1985e298e216SJacques Pienaar 1986e298e216SJacques PienaarEXTERNAL_GROUPS = YES 1987e298e216SJacques Pienaar 1988e298e216SJacques Pienaar# If the EXTERNAL_PAGES tag is set to YES all external pages will be listed in 1989e298e216SJacques Pienaar# the related pages index. If set to NO, only the current project's pages will 1990e298e216SJacques Pienaar# be listed. 1991e298e216SJacques Pienaar# The default value is: YES. 1992e298e216SJacques Pienaar 1993e298e216SJacques PienaarEXTERNAL_PAGES = YES 1994e298e216SJacques Pienaar 1995e298e216SJacques Pienaar# The PERL_PATH should be the absolute path and name of the perl script 1996e298e216SJacques Pienaar# interpreter (i.e. the result of 'which perl'). 1997e298e216SJacques Pienaar# The default file (with absolute path) is: /usr/bin/perl. 1998e298e216SJacques Pienaar 1999e298e216SJacques PienaarPERL_PATH = /usr/bin/perl 2000e298e216SJacques Pienaar 2001e298e216SJacques Pienaar#--------------------------------------------------------------------------- 2002e298e216SJacques Pienaar# Configuration options related to the dot tool 2003e298e216SJacques Pienaar#--------------------------------------------------------------------------- 2004e298e216SJacques Pienaar 2005e298e216SJacques Pienaar# If the CLASS_DIAGRAMS tag is set to YES doxygen will generate a class diagram 2006e298e216SJacques Pienaar# (in HTML and LaTeX) for classes with base or super classes. Setting the tag to 2007e298e216SJacques Pienaar# NO turns the diagrams off. Note that this option also works with HAVE_DOT 2008e298e216SJacques Pienaar# disabled, but it is recommended to install and use dot, since it yields more 2009e298e216SJacques Pienaar# powerful graphs. 2010e298e216SJacques Pienaar# The default value is: YES. 2011e298e216SJacques Pienaar 2012e298e216SJacques PienaarCLASS_DIAGRAMS = YES 2013e298e216SJacques Pienaar 2014e298e216SJacques Pienaar# You can define message sequence charts within doxygen comments using the \msc 2015e298e216SJacques Pienaar# command. Doxygen will then run the mscgen tool (see: 2016e298e216SJacques Pienaar# http://www.mcternan.me.uk/mscgen/)) to produce the chart and insert it in the 2017e298e216SJacques Pienaar# documentation. The MSCGEN_PATH tag allows you to specify the directory where 2018e298e216SJacques Pienaar# the mscgen tool resides. If left empty the tool is assumed to be found in the 2019e298e216SJacques Pienaar# default search path. 2020e298e216SJacques Pienaar 2021e298e216SJacques PienaarMSCGEN_PATH = 2022e298e216SJacques Pienaar 2023e298e216SJacques Pienaar# You can include diagrams made with dia in doxygen documentation. Doxygen will 2024e298e216SJacques Pienaar# then run dia to produce the diagram and insert it in the documentation. The 2025e298e216SJacques Pienaar# DIA_PATH tag allows you to specify the directory where the dia binary resides. 2026e298e216SJacques Pienaar# If left empty dia is assumed to be found in the default search path. 2027e298e216SJacques Pienaar 2028e298e216SJacques PienaarDIA_PATH = 2029e298e216SJacques Pienaar 2030e298e216SJacques Pienaar# If set to YES, the inheritance and collaboration graphs will hide inheritance 2031e298e216SJacques Pienaar# and usage relations if the target is undocumented or is not a class. 2032e298e216SJacques Pienaar# The default value is: YES. 2033e298e216SJacques Pienaar 2034e298e216SJacques PienaarHIDE_UNDOC_RELATIONS = NO 2035e298e216SJacques Pienaar 2036e298e216SJacques Pienaar# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is 2037e298e216SJacques Pienaar# available from the path. This tool is part of Graphviz (see: 2038e298e216SJacques Pienaar# http://www.graphviz.org/), a graph visualization toolkit from AT&T and Lucent 2039e298e216SJacques Pienaar# Bell Labs. The other options in this section have no effect if this option is 2040e298e216SJacques Pienaar# set to NO 2041e298e216SJacques Pienaar# The default value is: NO. 2042e298e216SJacques Pienaar 2043e298e216SJacques PienaarHAVE_DOT = YES 2044e298e216SJacques Pienaar 2045e298e216SJacques Pienaar# The DOT_NUM_THREADS specifies the number of dot invocations doxygen is allowed 2046e298e216SJacques Pienaar# to run in parallel. When set to 0 doxygen will base this on the number of 2047e298e216SJacques Pienaar# processors available in the system. You can set it explicitly to a value 2048e298e216SJacques Pienaar# larger than 0 to get control over the balance between CPU load and processing 2049e298e216SJacques Pienaar# speed. 2050e298e216SJacques Pienaar# Minimum value: 0, maximum value: 32, default value: 0. 2051e298e216SJacques Pienaar# This tag requires that the tag HAVE_DOT is set to YES. 2052e298e216SJacques Pienaar 2053e298e216SJacques PienaarDOT_NUM_THREADS = 0 2054e298e216SJacques Pienaar 2055e298e216SJacques Pienaar# When you want a differently looking font n the dot files that doxygen 2056e298e216SJacques Pienaar# generates you can specify the font name using DOT_FONTNAME. You need to make 2057e298e216SJacques Pienaar# sure dot is able to find the font, which can be done by putting it in a 2058e298e216SJacques Pienaar# standard location or by setting the DOTFONTPATH environment variable or by 2059e298e216SJacques Pienaar# setting DOT_FONTPATH to the directory containing the font. 2060e298e216SJacques Pienaar# The default value is: Helvetica. 2061e298e216SJacques Pienaar# This tag requires that the tag HAVE_DOT is set to YES. 2062e298e216SJacques Pienaar 2063e298e216SJacques PienaarDOT_FONTNAME = Helvetica 2064e298e216SJacques Pienaar 2065e298e216SJacques Pienaar# The DOT_FONTSIZE tag can be used to set the size (in points) of the font of 2066e298e216SJacques Pienaar# dot graphs. 2067e298e216SJacques Pienaar# Minimum value: 4, maximum value: 24, default value: 10. 2068e298e216SJacques Pienaar# This tag requires that the tag HAVE_DOT is set to YES. 2069e298e216SJacques Pienaar 2070e298e216SJacques PienaarDOT_FONTSIZE = 10 2071e298e216SJacques Pienaar 2072e298e216SJacques Pienaar# By default doxygen will tell dot to use the default font as specified with 2073e298e216SJacques Pienaar# DOT_FONTNAME. If you specify a different font using DOT_FONTNAME you can set 2074e298e216SJacques Pienaar# the path where dot can find it using this tag. 2075e298e216SJacques Pienaar# This tag requires that the tag HAVE_DOT is set to YES. 2076e298e216SJacques Pienaar 2077e298e216SJacques PienaarDOT_FONTPATH = 2078e298e216SJacques Pienaar 2079e298e216SJacques Pienaar# If the CLASS_GRAPH tag is set to YES then doxygen will generate a graph for 2080e298e216SJacques Pienaar# each documented class showing the direct and indirect inheritance relations. 2081e298e216SJacques Pienaar# Setting this tag to YES will force the CLASS_DIAGRAMS tag to NO. 2082e298e216SJacques Pienaar# The default value is: YES. 2083e298e216SJacques Pienaar# This tag requires that the tag HAVE_DOT is set to YES. 2084e298e216SJacques Pienaar 2085e298e216SJacques PienaarCLASS_GRAPH = YES 2086e298e216SJacques Pienaar 2087e298e216SJacques Pienaar# If the COLLABORATION_GRAPH tag is set to YES then doxygen will generate a 2088e298e216SJacques Pienaar# graph for each documented class showing the direct and indirect implementation 2089e298e216SJacques Pienaar# dependencies (inheritance, containment, and class references variables) of the 2090e298e216SJacques Pienaar# class with other documented classes. 2091e298e216SJacques Pienaar# The default value is: YES. 2092e298e216SJacques Pienaar# This tag requires that the tag HAVE_DOT is set to YES. 2093e298e216SJacques Pienaar 2094*eadf6db5STimm BäderCOLLABORATION_GRAPH = NO 2095e298e216SJacques Pienaar 2096e298e216SJacques Pienaar# If the GROUP_GRAPHS tag is set to YES then doxygen will generate a graph for 2097e298e216SJacques Pienaar# groups, showing the direct groups dependencies. 2098e298e216SJacques Pienaar# The default value is: YES. 2099e298e216SJacques Pienaar# This tag requires that the tag HAVE_DOT is set to YES. 2100e298e216SJacques Pienaar 2101e298e216SJacques PienaarGROUP_GRAPHS = YES 2102e298e216SJacques Pienaar 2103e298e216SJacques Pienaar# If the UML_LOOK tag is set to YES doxygen will generate inheritance and 2104e298e216SJacques Pienaar# collaboration diagrams in a style similar to the OMG's Unified Modeling 2105e298e216SJacques Pienaar# Language. 2106e298e216SJacques Pienaar# The default value is: NO. 2107e298e216SJacques Pienaar# This tag requires that the tag HAVE_DOT is set to YES. 2108e298e216SJacques Pienaar 2109e298e216SJacques PienaarUML_LOOK = NO 2110e298e216SJacques Pienaar 2111e298e216SJacques Pienaar# If the UML_LOOK tag is enabled, the fields and methods are shown inside the 2112e298e216SJacques Pienaar# class node. If there are many fields or methods and many nodes the graph may 2113e298e216SJacques Pienaar# become too big to be useful. The UML_LIMIT_NUM_FIELDS threshold limits the 2114e298e216SJacques Pienaar# number of items for each type to make the size more manageable. Set this to 0 2115e298e216SJacques Pienaar# for no limit. Note that the threshold may be exceeded by 50% before the limit 2116e298e216SJacques Pienaar# is enforced. So when you set the threshold to 10, up to 15 fields may appear, 2117e298e216SJacques Pienaar# but if the number exceeds 15, the total amount of fields shown is limited to 2118e298e216SJacques Pienaar# 10. 2119e298e216SJacques Pienaar# Minimum value: 0, maximum value: 100, default value: 10. 2120e298e216SJacques Pienaar# This tag requires that the tag HAVE_DOT is set to YES. 2121e298e216SJacques Pienaar 2122e298e216SJacques PienaarUML_LIMIT_NUM_FIELDS = 10 2123e298e216SJacques Pienaar 2124e298e216SJacques Pienaar# If the TEMPLATE_RELATIONS tag is set to YES then the inheritance and 2125e298e216SJacques Pienaar# collaboration graphs will show the relations between templates and their 2126e298e216SJacques Pienaar# instances. 2127e298e216SJacques Pienaar# The default value is: NO. 2128e298e216SJacques Pienaar# This tag requires that the tag HAVE_DOT is set to YES. 2129e298e216SJacques Pienaar 2130e298e216SJacques PienaarTEMPLATE_RELATIONS = YES 2131e298e216SJacques Pienaar 2132e298e216SJacques Pienaar# If the INCLUDE_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are set to 2133e298e216SJacques Pienaar# YES then doxygen will generate a graph for each documented file showing the 2134e298e216SJacques Pienaar# direct and indirect include dependencies of the file with other documented 2135e298e216SJacques Pienaar# files. 2136e298e216SJacques Pienaar# The default value is: YES. 2137e298e216SJacques Pienaar# This tag requires that the tag HAVE_DOT is set to YES. 2138e298e216SJacques Pienaar 2139*eadf6db5STimm BäderINCLUDE_GRAPH = NO 2140e298e216SJacques Pienaar 2141e298e216SJacques Pienaar# If the INCLUDED_BY_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are 2142e298e216SJacques Pienaar# set to YES then doxygen will generate a graph for each documented file showing 2143e298e216SJacques Pienaar# the direct and indirect include dependencies of the file with other documented 2144e298e216SJacques Pienaar# files. 2145e298e216SJacques Pienaar# The default value is: YES. 2146e298e216SJacques Pienaar# This tag requires that the tag HAVE_DOT is set to YES. 2147e298e216SJacques Pienaar 2148*eadf6db5STimm BäderINCLUDED_BY_GRAPH = NO 2149e298e216SJacques Pienaar 2150e298e216SJacques Pienaar# If the CALL_GRAPH tag is set to YES then doxygen will generate a call 2151e298e216SJacques Pienaar# dependency graph for every global function or class method. 2152e298e216SJacques Pienaar# 2153e298e216SJacques Pienaar# Note that enabling this option will significantly increase the time of a run. 2154e298e216SJacques Pienaar# So in most cases it will be better to enable call graphs for selected 2155e298e216SJacques Pienaar# functions only using the \callgraph command. 2156e298e216SJacques Pienaar# The default value is: NO. 2157e298e216SJacques Pienaar# This tag requires that the tag HAVE_DOT is set to YES. 2158e298e216SJacques Pienaar 2159e298e216SJacques PienaarCALL_GRAPH = NO 2160e298e216SJacques Pienaar 2161e298e216SJacques Pienaar# If the CALLER_GRAPH tag is set to YES then doxygen will generate a caller 2162e298e216SJacques Pienaar# dependency graph for every global function or class method. 2163e298e216SJacques Pienaar# 2164e298e216SJacques Pienaar# Note that enabling this option will significantly increase the time of a run. 2165e298e216SJacques Pienaar# So in most cases it will be better to enable caller graphs for selected 2166e298e216SJacques Pienaar# functions only using the \callergraph command. 2167e298e216SJacques Pienaar# The default value is: NO. 2168e298e216SJacques Pienaar# This tag requires that the tag HAVE_DOT is set to YES. 2169e298e216SJacques Pienaar 2170e298e216SJacques PienaarCALLER_GRAPH = NO 2171e298e216SJacques Pienaar 2172e298e216SJacques Pienaar# If the GRAPHICAL_HIERARCHY tag is set to YES then doxygen will graphical 2173e298e216SJacques Pienaar# hierarchy of all classes instead of a textual one. 2174e298e216SJacques Pienaar# The default value is: YES. 2175e298e216SJacques Pienaar# This tag requires that the tag HAVE_DOT is set to YES. 2176e298e216SJacques Pienaar 2177e298e216SJacques PienaarGRAPHICAL_HIERARCHY = YES 2178e298e216SJacques Pienaar 2179e298e216SJacques Pienaar# If the DIRECTORY_GRAPH tag is set to YES then doxygen will show the 2180e298e216SJacques Pienaar# dependencies a directory has on other directories in a graphical way. The 2181e298e216SJacques Pienaar# dependency relations are determined by the #include relations between the 2182e298e216SJacques Pienaar# files in the directories. 2183e298e216SJacques Pienaar# The default value is: YES. 2184e298e216SJacques Pienaar# This tag requires that the tag HAVE_DOT is set to YES. 2185e298e216SJacques Pienaar 2186e298e216SJacques PienaarDIRECTORY_GRAPH = YES 2187e298e216SJacques Pienaar 2188e298e216SJacques Pienaar# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images 2189e298e216SJacques Pienaar# generated by dot. 2190e298e216SJacques Pienaar# Note: If you choose svg you need to set HTML_FILE_EXTENSION to xhtml in order 2191e298e216SJacques Pienaar# to make the SVG files visible in IE 9+ (other browsers do not have this 2192e298e216SJacques Pienaar# requirement). 2193e298e216SJacques Pienaar# Possible values are: png, jpg, gif and svg. 2194e298e216SJacques Pienaar# The default value is: png. 2195e298e216SJacques Pienaar# This tag requires that the tag HAVE_DOT is set to YES. 2196e298e216SJacques Pienaar 2197e298e216SJacques PienaarDOT_IMAGE_FORMAT = @DOT_IMAGE_FORMAT@ 2198e298e216SJacques Pienaar 2199e298e216SJacques Pienaar# If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to 2200e298e216SJacques Pienaar# enable generation of interactive SVG images that allow zooming and panning. 2201e298e216SJacques Pienaar# 2202e298e216SJacques Pienaar# Note that this requires a modern browser other than Internet Explorer. Tested 2203e298e216SJacques Pienaar# and working are Firefox, Chrome, Safari, and Opera. 2204e298e216SJacques Pienaar# Note: For IE 9+ you need to set HTML_FILE_EXTENSION to xhtml in order to make 2205e298e216SJacques Pienaar# the SVG files visible. Older versions of IE do not have SVG support. 2206e298e216SJacques Pienaar# The default value is: NO. 2207e298e216SJacques Pienaar# This tag requires that the tag HAVE_DOT is set to YES. 2208e298e216SJacques Pienaar 2209e298e216SJacques PienaarINTERACTIVE_SVG = NO 2210e298e216SJacques Pienaar 2211e298e216SJacques Pienaar# The DOT_PATH tag can be used to specify the path where the dot tool can be 2212e298e216SJacques Pienaar# found. If left blank, it is assumed the dot tool can be found in the path. 2213e298e216SJacques Pienaar# This tag requires that the tag HAVE_DOT is set to YES. 2214e298e216SJacques Pienaar 2215e298e216SJacques PienaarDOT_PATH = @DOT@ 2216e298e216SJacques Pienaar 2217e298e216SJacques Pienaar# The DOTFILE_DIRS tag can be used to specify one or more directories that 2218e298e216SJacques Pienaar# contain dot files that are included in the documentation (see the \dotfile 2219e298e216SJacques Pienaar# command). 2220e298e216SJacques Pienaar# This tag requires that the tag HAVE_DOT is set to YES. 2221e298e216SJacques Pienaar 2222e298e216SJacques PienaarDOTFILE_DIRS = 2223e298e216SJacques Pienaar 2224e298e216SJacques Pienaar# The MSCFILE_DIRS tag can be used to specify one or more directories that 2225e298e216SJacques Pienaar# contain msc files that are included in the documentation (see the \mscfile 2226e298e216SJacques Pienaar# command). 2227e298e216SJacques Pienaar 2228e298e216SJacques PienaarMSCFILE_DIRS = 2229e298e216SJacques Pienaar 2230e298e216SJacques Pienaar# The DIAFILE_DIRS tag can be used to specify one or more directories that 2231e298e216SJacques Pienaar# contain dia files that are included in the documentation (see the \diafile 2232e298e216SJacques Pienaar# command). 2233e298e216SJacques Pienaar 2234e298e216SJacques PienaarDIAFILE_DIRS = 2235e298e216SJacques Pienaar 2236e298e216SJacques Pienaar# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of nodes 2237e298e216SJacques Pienaar# that will be shown in the graph. If the number of nodes in a graph becomes 2238e298e216SJacques Pienaar# larger than this value, doxygen will truncate the graph, which is visualized 2239e298e216SJacques Pienaar# by representing a node as a red box. Note that doxygen if the number of direct 2240e298e216SJacques Pienaar# children of the root node in a graph is already larger than 2241e298e216SJacques Pienaar# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note that 2242e298e216SJacques Pienaar# the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. 2243e298e216SJacques Pienaar# Minimum value: 0, maximum value: 10000, default value: 50. 2244e298e216SJacques Pienaar# This tag requires that the tag HAVE_DOT is set to YES. 2245e298e216SJacques Pienaar 2246e298e216SJacques PienaarDOT_GRAPH_MAX_NODES = 50 2247e298e216SJacques Pienaar 2248e298e216SJacques Pienaar# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the graphs 2249e298e216SJacques Pienaar# generated by dot. A depth value of 3 means that only nodes reachable from the 2250e298e216SJacques Pienaar# root by following a path via at most 3 edges will be shown. Nodes that lay 2251e298e216SJacques Pienaar# further from the root node will be omitted. Note that setting this option to 1 2252e298e216SJacques Pienaar# or 2 may greatly reduce the computation time needed for large code bases. Also 2253e298e216SJacques Pienaar# note that the size of a graph can be further restricted by 2254e298e216SJacques Pienaar# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. 2255e298e216SJacques Pienaar# Minimum value: 0, maximum value: 1000, default value: 0. 2256e298e216SJacques Pienaar# This tag requires that the tag HAVE_DOT is set to YES. 2257e298e216SJacques Pienaar 2258e298e216SJacques PienaarMAX_DOT_GRAPH_DEPTH = 0 2259e298e216SJacques Pienaar 2260e298e216SJacques Pienaar# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent 2261e298e216SJacques Pienaar# background. This is disabled by default, because dot on Windows does not seem 2262e298e216SJacques Pienaar# to support this out of the box. 2263e298e216SJacques Pienaar# 2264e298e216SJacques Pienaar# Warning: Depending on the platform used, enabling this option may lead to 2265e298e216SJacques Pienaar# badly anti-aliased labels on the edges of a graph (i.e. they become hard to 2266e298e216SJacques Pienaar# read). 2267e298e216SJacques Pienaar# The default value is: NO. 2268e298e216SJacques Pienaar# This tag requires that the tag HAVE_DOT is set to YES. 2269e298e216SJacques Pienaar 2270e298e216SJacques PienaarDOT_TRANSPARENT = YES 2271e298e216SJacques Pienaar 2272e298e216SJacques Pienaar# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output 2273e298e216SJacques Pienaar# files in one run (i.e. multiple -o and -T options on the command line). This 2274e298e216SJacques Pienaar# makes dot run faster, but since only newer versions of dot (>1.8.10) support 2275e298e216SJacques Pienaar# this, this feature is disabled by default. 2276e298e216SJacques Pienaar# The default value is: NO. 2277e298e216SJacques Pienaar# This tag requires that the tag HAVE_DOT is set to YES. 2278e298e216SJacques Pienaar 2279e298e216SJacques PienaarDOT_MULTI_TARGETS = YES 2280e298e216SJacques Pienaar 2281e298e216SJacques Pienaar# If the GENERATE_LEGEND tag is set to YES doxygen will generate a legend page 2282e298e216SJacques Pienaar# explaining the meaning of the various boxes and arrows in the dot generated 2283e298e216SJacques Pienaar# graphs. 2284e298e216SJacques Pienaar# The default value is: YES. 2285e298e216SJacques Pienaar# This tag requires that the tag HAVE_DOT is set to YES. 2286e298e216SJacques Pienaar 2287e298e216SJacques PienaarGENERATE_LEGEND = YES 2288e298e216SJacques Pienaar 2289e298e216SJacques Pienaar# If the DOT_CLEANUP tag is set to YES doxygen will remove the intermediate dot 2290e298e216SJacques Pienaar# files that are used to generate the various graphs. 2291e298e216SJacques Pienaar# The default value is: YES. 2292e298e216SJacques Pienaar# This tag requires that the tag HAVE_DOT is set to YES. 2293e298e216SJacques Pienaar 2294e298e216SJacques PienaarDOT_CLEANUP = YES 2295