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