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