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