1*f4a2713aSLionel Sambuc# Doxyfile 1.4.4 2*f4a2713aSLionel Sambuc 3*f4a2713aSLionel Sambuc# This file describes the settings to be used by the documentation system 4*f4a2713aSLionel Sambuc# doxygen (www.doxygen.org) for a project 5*f4a2713aSLionel Sambuc# 6*f4a2713aSLionel Sambuc# All text after a hash (#) is considered a comment and will be ignored 7*f4a2713aSLionel Sambuc# The format is: 8*f4a2713aSLionel Sambuc# TAG = value [value, ...] 9*f4a2713aSLionel Sambuc# For lists items can also be appended using: 10*f4a2713aSLionel Sambuc# TAG += value [value, ...] 11*f4a2713aSLionel Sambuc# Values that contain spaces should be placed between quotes (" ") 12*f4a2713aSLionel Sambuc 13*f4a2713aSLionel Sambuc#--------------------------------------------------------------------------- 14*f4a2713aSLionel Sambuc# Project related configuration options 15*f4a2713aSLionel Sambuc#--------------------------------------------------------------------------- 16*f4a2713aSLionel Sambuc 17*f4a2713aSLionel Sambuc# The PROJECT_NAME tag is a single word (or a sequence of words surrounded 18*f4a2713aSLionel Sambuc# by quotes) that should identify the project. 19*f4a2713aSLionel Sambuc 20*f4a2713aSLionel SambucPROJECT_NAME = clang 21*f4a2713aSLionel Sambuc 22*f4a2713aSLionel Sambuc# The PROJECT_NUMBER tag can be used to enter a project or revision number. 23*f4a2713aSLionel Sambuc# This could be handy for archiving the generated documentation or 24*f4a2713aSLionel Sambuc# if some version control system is used. 25*f4a2713aSLionel Sambuc 26*f4a2713aSLionel SambucPROJECT_NUMBER = @PACKAGE_VERSION@ 27*f4a2713aSLionel Sambuc 28*f4a2713aSLionel Sambuc# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) 29*f4a2713aSLionel Sambuc# base path where the generated documentation will be put. 30*f4a2713aSLionel Sambuc# If a relative path is entered, it will be relative to the location 31*f4a2713aSLionel Sambuc# where doxygen was started. If left blank the current directory will be used. 32*f4a2713aSLionel Sambuc 33*f4a2713aSLionel SambucOUTPUT_DIRECTORY = @abs_builddir@/doxygen 34*f4a2713aSLionel Sambuc 35*f4a2713aSLionel Sambuc# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 36*f4a2713aSLionel Sambuc# 4096 sub-directories (in 2 levels) under the output directory of each output 37*f4a2713aSLionel Sambuc# format and will distribute the generated files over these directories. 38*f4a2713aSLionel Sambuc# Enabling this option can be useful when feeding doxygen a huge amount of 39*f4a2713aSLionel Sambuc# source files, where putting all generated files in the same directory would 40*f4a2713aSLionel Sambuc# otherwise cause performance problems for the file system. 41*f4a2713aSLionel Sambuc 42*f4a2713aSLionel SambucCREATE_SUBDIRS = NO 43*f4a2713aSLionel Sambuc 44*f4a2713aSLionel Sambuc# The OUTPUT_LANGUAGE tag is used to specify the language in which all 45*f4a2713aSLionel Sambuc# documentation generated by doxygen is written. Doxygen will use this 46*f4a2713aSLionel Sambuc# information to generate all constant output in the proper language. 47*f4a2713aSLionel Sambuc# The default language is English, other supported languages are: 48*f4a2713aSLionel Sambuc# Brazilian, Catalan, Chinese, Chinese-Traditional, Croatian, Czech, Danish, 49*f4a2713aSLionel Sambuc# Dutch, Finnish, French, German, Greek, Hungarian, Italian, Japanese, 50*f4a2713aSLionel Sambuc# Japanese-en (Japanese with English messages), Korean, Korean-en, Norwegian, 51*f4a2713aSLionel Sambuc# Polish, Portuguese, Romanian, Russian, Serbian, Slovak, Slovene, Spanish, 52*f4a2713aSLionel Sambuc# Swedish, and Ukrainian. 53*f4a2713aSLionel Sambuc 54*f4a2713aSLionel SambucOUTPUT_LANGUAGE = English 55*f4a2713aSLionel Sambuc 56*f4a2713aSLionel Sambuc# This tag can be used to specify the encoding used in the generated output. 57*f4a2713aSLionel Sambuc# The encoding is not always determined by the language that is chosen, 58*f4a2713aSLionel Sambuc# but also whether or not the output is meant for Windows or non-Windows users. 59*f4a2713aSLionel Sambuc# In case there is a difference, setting the USE_WINDOWS_ENCODING tag to YES 60*f4a2713aSLionel Sambuc# forces the Windows encoding (this is the default for the Windows binary), 61*f4a2713aSLionel Sambuc# whereas setting the tag to NO uses a Unix-style encoding (the default for 62*f4a2713aSLionel Sambuc# all platforms other than Windows). 63*f4a2713aSLionel Sambuc 64*f4a2713aSLionel SambucUSE_WINDOWS_ENCODING = NO 65*f4a2713aSLionel Sambuc 66*f4a2713aSLionel Sambuc# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will 67*f4a2713aSLionel Sambuc# include brief member descriptions after the members that are listed in 68*f4a2713aSLionel Sambuc# the file and class documentation (similar to JavaDoc). 69*f4a2713aSLionel Sambuc# Set to NO to disable this. 70*f4a2713aSLionel Sambuc 71*f4a2713aSLionel SambucBRIEF_MEMBER_DESC = YES 72*f4a2713aSLionel Sambuc 73*f4a2713aSLionel Sambuc# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend 74*f4a2713aSLionel Sambuc# the brief description of a member or function before the detailed description. 75*f4a2713aSLionel Sambuc# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the 76*f4a2713aSLionel Sambuc# brief descriptions will be completely suppressed. 77*f4a2713aSLionel Sambuc 78*f4a2713aSLionel SambucREPEAT_BRIEF = YES 79*f4a2713aSLionel Sambuc 80*f4a2713aSLionel Sambuc# This tag implements a quasi-intelligent brief description abbreviator 81*f4a2713aSLionel Sambuc# that is used to form the text in various listings. Each string 82*f4a2713aSLionel Sambuc# in this list, if found as the leading text of the brief description, will be 83*f4a2713aSLionel Sambuc# stripped from the text and the result after processing the whole list, is 84*f4a2713aSLionel Sambuc# used as the annotated text. Otherwise, the brief description is used as-is. 85*f4a2713aSLionel Sambuc# If left blank, the following values are used ("$name" is automatically 86*f4a2713aSLionel Sambuc# replaced with the name of the entity): "The $name class" "The $name widget" 87*f4a2713aSLionel Sambuc# "The $name file" "is" "provides" "specifies" "contains" 88*f4a2713aSLionel Sambuc# "represents" "a" "an" "the" 89*f4a2713aSLionel Sambuc 90*f4a2713aSLionel SambucABBREVIATE_BRIEF = 91*f4a2713aSLionel Sambuc 92*f4a2713aSLionel Sambuc# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then 93*f4a2713aSLionel Sambuc# Doxygen will generate a detailed section even if there is only a brief 94*f4a2713aSLionel Sambuc# description. 95*f4a2713aSLionel Sambuc 96*f4a2713aSLionel SambucALWAYS_DETAILED_SEC = NO 97*f4a2713aSLionel Sambuc 98*f4a2713aSLionel Sambuc# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all 99*f4a2713aSLionel Sambuc# inherited members of a class in the documentation of that class as if those 100*f4a2713aSLionel Sambuc# members were ordinary class members. Constructors, destructors and assignment 101*f4a2713aSLionel Sambuc# operators of the base classes will not be shown. 102*f4a2713aSLionel Sambuc 103*f4a2713aSLionel SambucINLINE_INHERITED_MEMB = NO 104*f4a2713aSLionel Sambuc 105*f4a2713aSLionel Sambuc# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full 106*f4a2713aSLionel Sambuc# path before files name in the file list and in the header files. If set 107*f4a2713aSLionel Sambuc# to NO the shortest path that makes the file name unique will be used. 108*f4a2713aSLionel Sambuc 109*f4a2713aSLionel SambucFULL_PATH_NAMES = NO 110*f4a2713aSLionel Sambuc 111*f4a2713aSLionel Sambuc# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag 112*f4a2713aSLionel Sambuc# can be used to strip a user-defined part of the path. Stripping is 113*f4a2713aSLionel Sambuc# only done if one of the specified strings matches the left-hand part of 114*f4a2713aSLionel Sambuc# the path. The tag can be used to show relative paths in the file list. 115*f4a2713aSLionel Sambuc# If left blank the directory from which doxygen is run is used as the 116*f4a2713aSLionel Sambuc# path to strip. 117*f4a2713aSLionel Sambuc 118*f4a2713aSLionel SambucSTRIP_FROM_PATH = ../.. 119*f4a2713aSLionel Sambuc 120*f4a2713aSLionel Sambuc# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of 121*f4a2713aSLionel Sambuc# the path mentioned in the documentation of a class, which tells 122*f4a2713aSLionel Sambuc# the reader which header file to include in order to use a class. 123*f4a2713aSLionel Sambuc# If left blank only the name of the header file containing the class 124*f4a2713aSLionel Sambuc# definition is used. Otherwise one should specify the include paths that 125*f4a2713aSLionel Sambuc# are normally passed to the compiler using the -I flag. 126*f4a2713aSLionel Sambuc 127*f4a2713aSLionel SambucSTRIP_FROM_INC_PATH = 128*f4a2713aSLionel Sambuc 129*f4a2713aSLionel Sambuc# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter 130*f4a2713aSLionel Sambuc# (but less readable) file names. This can be useful is your file systems 131*f4a2713aSLionel Sambuc# doesn't support long names like on DOS, Mac, or CD-ROM. 132*f4a2713aSLionel Sambuc 133*f4a2713aSLionel SambucSHORT_NAMES = NO 134*f4a2713aSLionel Sambuc 135*f4a2713aSLionel Sambuc# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen 136*f4a2713aSLionel Sambuc# will interpret the first line (until the first dot) of a JavaDoc-style 137*f4a2713aSLionel Sambuc# comment as the brief description. If set to NO, the JavaDoc 138*f4a2713aSLionel Sambuc# comments will behave just like the Qt-style comments (thus requiring an 139*f4a2713aSLionel Sambuc# explicit @brief command for a brief description. 140*f4a2713aSLionel Sambuc 141*f4a2713aSLionel SambucJAVADOC_AUTOBRIEF = NO 142*f4a2713aSLionel Sambuc 143*f4a2713aSLionel Sambuc# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen 144*f4a2713aSLionel Sambuc# treat a multi-line C++ special comment block (i.e. a block of //! or /// 145*f4a2713aSLionel Sambuc# comments) as a brief description. This used to be the default behaviour. 146*f4a2713aSLionel Sambuc# The new default is to treat a multi-line C++ comment block as a detailed 147*f4a2713aSLionel Sambuc# description. Set this tag to YES if you prefer the old behaviour instead. 148*f4a2713aSLionel Sambuc 149*f4a2713aSLionel SambucMULTILINE_CPP_IS_BRIEF = NO 150*f4a2713aSLionel Sambuc 151*f4a2713aSLionel Sambuc# If the DETAILS_AT_TOP tag is set to YES then Doxygen 152*f4a2713aSLionel Sambuc# will output the detailed description near the top, like JavaDoc. 153*f4a2713aSLionel Sambuc# If set to NO, the detailed description appears after the member 154*f4a2713aSLionel Sambuc# documentation. 155*f4a2713aSLionel Sambuc 156*f4a2713aSLionel SambucDETAILS_AT_TOP = NO 157*f4a2713aSLionel Sambuc 158*f4a2713aSLionel Sambuc# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented 159*f4a2713aSLionel Sambuc# member inherits the documentation from any documented member that it 160*f4a2713aSLionel Sambuc# re-implements. 161*f4a2713aSLionel Sambuc 162*f4a2713aSLionel SambucINHERIT_DOCS = YES 163*f4a2713aSLionel Sambuc 164*f4a2713aSLionel Sambuc# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC 165*f4a2713aSLionel Sambuc# tag is set to YES, then doxygen will reuse the documentation of the first 166*f4a2713aSLionel Sambuc# member in the group (if any) for the other members of the group. By default 167*f4a2713aSLionel Sambuc# all members of a group must be documented explicitly. 168*f4a2713aSLionel Sambuc 169*f4a2713aSLionel SambucDISTRIBUTE_GROUP_DOC = NO 170*f4a2713aSLionel Sambuc 171*f4a2713aSLionel Sambuc# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce 172*f4a2713aSLionel Sambuc# a new page for each member. If set to NO, the documentation of a member will 173*f4a2713aSLionel Sambuc# be part of the file/class/namespace that contains it. 174*f4a2713aSLionel Sambuc 175*f4a2713aSLionel Sambuc#SEPARATE_MEMBER_PAGES = NO 176*f4a2713aSLionel Sambuc 177*f4a2713aSLionel Sambuc# The TAB_SIZE tag can be used to set the number of spaces in a tab. 178*f4a2713aSLionel Sambuc# Doxygen uses this value to replace tabs by spaces in code fragments. 179*f4a2713aSLionel Sambuc 180*f4a2713aSLionel SambucTAB_SIZE = 2 181*f4a2713aSLionel Sambuc 182*f4a2713aSLionel Sambuc# This tag can be used to specify a number of aliases that acts 183*f4a2713aSLionel Sambuc# as commands in the documentation. An alias has the form "name=value". 184*f4a2713aSLionel Sambuc# For example adding "sideeffect=\par Side Effects:\n" will allow you to 185*f4a2713aSLionel Sambuc# put the command \sideeffect (or @sideeffect) in the documentation, which 186*f4a2713aSLionel Sambuc# will result in a user-defined paragraph with heading "Side Effects:". 187*f4a2713aSLionel Sambuc# You can put \n's in the value part of an alias to insert newlines. 188*f4a2713aSLionel Sambuc 189*f4a2713aSLionel SambucALIASES = 190*f4a2713aSLionel Sambuc 191*f4a2713aSLionel Sambuc# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C 192*f4a2713aSLionel Sambuc# sources only. Doxygen will then generate output that is more tailored for C. 193*f4a2713aSLionel Sambuc# For instance, some of the names that are used will be different. The list 194*f4a2713aSLionel Sambuc# of all members will be omitted, etc. 195*f4a2713aSLionel Sambuc 196*f4a2713aSLionel SambucOPTIMIZE_OUTPUT_FOR_C = NO 197*f4a2713aSLionel Sambuc 198*f4a2713aSLionel Sambuc# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java sources 199*f4a2713aSLionel Sambuc# only. Doxygen will then generate output that is more tailored for Java. 200*f4a2713aSLionel Sambuc# For instance, namespaces will be presented as packages, qualified scopes 201*f4a2713aSLionel Sambuc# will look different, etc. 202*f4a2713aSLionel Sambuc 203*f4a2713aSLionel SambucOPTIMIZE_OUTPUT_JAVA = NO 204*f4a2713aSLionel Sambuc 205*f4a2713aSLionel Sambuc# Set the SUBGROUPING tag to YES (the default) to allow class member groups of 206*f4a2713aSLionel Sambuc# the same type (for instance a group of public functions) to be put as a 207*f4a2713aSLionel Sambuc# subgroup of that type (e.g. under the Public Functions section). Set it to 208*f4a2713aSLionel Sambuc# NO to prevent subgrouping. Alternatively, this can be done per class using 209*f4a2713aSLionel Sambuc# the \nosubgrouping command. 210*f4a2713aSLionel Sambuc 211*f4a2713aSLionel SambucSUBGROUPING = YES 212*f4a2713aSLionel Sambuc 213*f4a2713aSLionel Sambuc#--------------------------------------------------------------------------- 214*f4a2713aSLionel Sambuc# Build related configuration options 215*f4a2713aSLionel Sambuc#--------------------------------------------------------------------------- 216*f4a2713aSLionel Sambuc 217*f4a2713aSLionel Sambuc# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in 218*f4a2713aSLionel Sambuc# documentation are documented, even if no documentation was available. 219*f4a2713aSLionel Sambuc# Private class members and static file members will be hidden unless 220*f4a2713aSLionel Sambuc# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES 221*f4a2713aSLionel Sambuc 222*f4a2713aSLionel SambucEXTRACT_ALL = YES 223*f4a2713aSLionel Sambuc 224*f4a2713aSLionel Sambuc# If the EXTRACT_PRIVATE tag is set to YES all private members of a class 225*f4a2713aSLionel Sambuc# will be included in the documentation. 226*f4a2713aSLionel Sambuc 227*f4a2713aSLionel SambucEXTRACT_PRIVATE = NO 228*f4a2713aSLionel Sambuc 229*f4a2713aSLionel Sambuc# If the EXTRACT_STATIC tag is set to YES all static members of a file 230*f4a2713aSLionel Sambuc# will be included in the documentation. 231*f4a2713aSLionel Sambuc 232*f4a2713aSLionel SambucEXTRACT_STATIC = YES 233*f4a2713aSLionel Sambuc 234*f4a2713aSLionel Sambuc# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) 235*f4a2713aSLionel Sambuc# defined locally in source files will be included in the documentation. 236*f4a2713aSLionel Sambuc# If set to NO only classes defined in header files are included. 237*f4a2713aSLionel Sambuc 238*f4a2713aSLionel SambucEXTRACT_LOCAL_CLASSES = YES 239*f4a2713aSLionel Sambuc 240*f4a2713aSLionel Sambuc# This flag is only useful for Objective-C code. When set to YES local 241*f4a2713aSLionel Sambuc# methods, which are defined in the implementation section but not in 242*f4a2713aSLionel Sambuc# the interface are included in the documentation. 243*f4a2713aSLionel Sambuc# If set to NO (the default) only methods in the interface are included. 244*f4a2713aSLionel Sambuc 245*f4a2713aSLionel SambucEXTRACT_LOCAL_METHODS = NO 246*f4a2713aSLionel Sambuc 247*f4a2713aSLionel Sambuc# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all 248*f4a2713aSLionel Sambuc# undocumented members of documented classes, files or namespaces. 249*f4a2713aSLionel Sambuc# If set to NO (the default) these members will be included in the 250*f4a2713aSLionel Sambuc# various overviews, but no documentation section is generated. 251*f4a2713aSLionel Sambuc# This option has no effect if EXTRACT_ALL is enabled. 252*f4a2713aSLionel Sambuc 253*f4a2713aSLionel SambucHIDE_UNDOC_MEMBERS = NO 254*f4a2713aSLionel Sambuc 255*f4a2713aSLionel Sambuc# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all 256*f4a2713aSLionel Sambuc# undocumented classes that are normally visible in the class hierarchy. 257*f4a2713aSLionel Sambuc# If set to NO (the default) these classes will be included in the various 258*f4a2713aSLionel Sambuc# overviews. This option has no effect if EXTRACT_ALL is enabled. 259*f4a2713aSLionel Sambuc 260*f4a2713aSLionel SambucHIDE_UNDOC_CLASSES = NO 261*f4a2713aSLionel Sambuc 262*f4a2713aSLionel Sambuc# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all 263*f4a2713aSLionel Sambuc# friend (class|struct|union) declarations. 264*f4a2713aSLionel Sambuc# If set to NO (the default) these declarations will be included in the 265*f4a2713aSLionel Sambuc# documentation. 266*f4a2713aSLionel Sambuc 267*f4a2713aSLionel SambucHIDE_FRIEND_COMPOUNDS = NO 268*f4a2713aSLionel Sambuc 269*f4a2713aSLionel Sambuc# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any 270*f4a2713aSLionel Sambuc# documentation blocks found inside the body of a function. 271*f4a2713aSLionel Sambuc# If set to NO (the default) these blocks will be appended to the 272*f4a2713aSLionel Sambuc# function's detailed documentation block. 273*f4a2713aSLionel Sambuc 274*f4a2713aSLionel SambucHIDE_IN_BODY_DOCS = NO 275*f4a2713aSLionel Sambuc 276*f4a2713aSLionel Sambuc# The INTERNAL_DOCS tag determines if documentation 277*f4a2713aSLionel Sambuc# that is typed after a \internal command is included. If the tag is set 278*f4a2713aSLionel Sambuc# to NO (the default) then the documentation will be excluded. 279*f4a2713aSLionel Sambuc# Set it to YES to include the internal documentation. 280*f4a2713aSLionel Sambuc 281*f4a2713aSLionel SambucINTERNAL_DOCS = NO 282*f4a2713aSLionel Sambuc 283*f4a2713aSLionel Sambuc# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate 284*f4a2713aSLionel Sambuc# file names in lower-case letters. If set to YES upper-case letters are also 285*f4a2713aSLionel Sambuc# allowed. This is useful if you have classes or files whose names only differ 286*f4a2713aSLionel Sambuc# in case and if your file system supports case sensitive file names. Windows 287*f4a2713aSLionel Sambuc# and Mac users are advised to set this option to NO. 288*f4a2713aSLionel Sambuc 289*f4a2713aSLionel SambucCASE_SENSE_NAMES = YES 290*f4a2713aSLionel Sambuc 291*f4a2713aSLionel Sambuc# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen 292*f4a2713aSLionel Sambuc# will show members with their full class and namespace scopes in the 293*f4a2713aSLionel Sambuc# documentation. If set to YES the scope will be hidden. 294*f4a2713aSLionel Sambuc 295*f4a2713aSLionel SambucHIDE_SCOPE_NAMES = NO 296*f4a2713aSLionel Sambuc 297*f4a2713aSLionel Sambuc# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen 298*f4a2713aSLionel Sambuc# will put a list of the files that are included by a file in the documentation 299*f4a2713aSLionel Sambuc# of that file. 300*f4a2713aSLionel Sambuc 301*f4a2713aSLionel SambucSHOW_INCLUDE_FILES = YES 302*f4a2713aSLionel Sambuc 303*f4a2713aSLionel Sambuc# If the INLINE_INFO tag is set to YES (the default) then a tag [inline] 304*f4a2713aSLionel Sambuc# is inserted in the documentation for inline members. 305*f4a2713aSLionel Sambuc 306*f4a2713aSLionel SambucINLINE_INFO = YES 307*f4a2713aSLionel Sambuc 308*f4a2713aSLionel Sambuc# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen 309*f4a2713aSLionel Sambuc# will sort the (detailed) documentation of file and class members 310*f4a2713aSLionel Sambuc# alphabetically by member name. If set to NO the members will appear in 311*f4a2713aSLionel Sambuc# declaration order. 312*f4a2713aSLionel Sambuc 313*f4a2713aSLionel SambucSORT_MEMBER_DOCS = YES 314*f4a2713aSLionel Sambuc 315*f4a2713aSLionel Sambuc# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the 316*f4a2713aSLionel Sambuc# brief documentation of file, namespace and class members alphabetically 317*f4a2713aSLionel Sambuc# by member name. If set to NO (the default) the members will appear in 318*f4a2713aSLionel Sambuc# declaration order. 319*f4a2713aSLionel Sambuc 320*f4a2713aSLionel SambucSORT_BRIEF_DOCS = NO 321*f4a2713aSLionel Sambuc 322*f4a2713aSLionel Sambuc# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be 323*f4a2713aSLionel Sambuc# sorted by fully-qualified names, including namespaces. If set to 324*f4a2713aSLionel Sambuc# NO (the default), the class list will be sorted only by class name, 325*f4a2713aSLionel Sambuc# not including the namespace part. 326*f4a2713aSLionel Sambuc# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. 327*f4a2713aSLionel Sambuc# Note: This option applies only to the class list, not to the 328*f4a2713aSLionel Sambuc# alphabetical list. 329*f4a2713aSLionel Sambuc 330*f4a2713aSLionel SambucSORT_BY_SCOPE_NAME = NO 331*f4a2713aSLionel Sambuc 332*f4a2713aSLionel Sambuc# The GENERATE_TODOLIST tag can be used to enable (YES) or 333*f4a2713aSLionel Sambuc# disable (NO) the todo list. This list is created by putting \todo 334*f4a2713aSLionel Sambuc# commands in the documentation. 335*f4a2713aSLionel Sambuc 336*f4a2713aSLionel SambucGENERATE_TODOLIST = YES 337*f4a2713aSLionel Sambuc 338*f4a2713aSLionel Sambuc# The GENERATE_TESTLIST tag can be used to enable (YES) or 339*f4a2713aSLionel Sambuc# disable (NO) the test list. This list is created by putting \test 340*f4a2713aSLionel Sambuc# commands in the documentation. 341*f4a2713aSLionel Sambuc 342*f4a2713aSLionel SambucGENERATE_TESTLIST = YES 343*f4a2713aSLionel Sambuc 344*f4a2713aSLionel Sambuc# The GENERATE_BUGLIST tag can be used to enable (YES) or 345*f4a2713aSLionel Sambuc# disable (NO) the bug list. This list is created by putting \bug 346*f4a2713aSLionel Sambuc# commands in the documentation. 347*f4a2713aSLionel Sambuc 348*f4a2713aSLionel SambucGENERATE_BUGLIST = YES 349*f4a2713aSLionel Sambuc 350*f4a2713aSLionel Sambuc# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or 351*f4a2713aSLionel Sambuc# disable (NO) the deprecated list. This list is created by putting 352*f4a2713aSLionel Sambuc# \deprecated commands in the documentation. 353*f4a2713aSLionel Sambuc 354*f4a2713aSLionel SambucGENERATE_DEPRECATEDLIST= YES 355*f4a2713aSLionel Sambuc 356*f4a2713aSLionel Sambuc# The ENABLED_SECTIONS tag can be used to enable conditional 357*f4a2713aSLionel Sambuc# documentation sections, marked by \if sectionname ... \endif. 358*f4a2713aSLionel Sambuc 359*f4a2713aSLionel SambucENABLED_SECTIONS = 360*f4a2713aSLionel Sambuc 361*f4a2713aSLionel Sambuc# The MAX_INITIALIZER_LINES tag determines the maximum number of lines 362*f4a2713aSLionel Sambuc# the initial value of a variable or define consists of for it to appear in 363*f4a2713aSLionel Sambuc# the documentation. If the initializer consists of more lines than specified 364*f4a2713aSLionel Sambuc# here it will be hidden. Use a value of 0 to hide initializers completely. 365*f4a2713aSLionel Sambuc# The appearance of the initializer of individual variables and defines in the 366*f4a2713aSLionel Sambuc# documentation can be controlled using \showinitializer or \hideinitializer 367*f4a2713aSLionel Sambuc# command in the documentation regardless of this setting. 368*f4a2713aSLionel Sambuc 369*f4a2713aSLionel SambucMAX_INITIALIZER_LINES = 30 370*f4a2713aSLionel Sambuc 371*f4a2713aSLionel Sambuc# Set the SHOW_USED_FILES tag to NO to disable the list of files generated 372*f4a2713aSLionel Sambuc# at the bottom of the documentation of classes and structs. If set to YES the 373*f4a2713aSLionel Sambuc# list will mention the files that were used to generate the documentation. 374*f4a2713aSLionel Sambuc 375*f4a2713aSLionel SambucSHOW_USED_FILES = YES 376*f4a2713aSLionel Sambuc 377*f4a2713aSLionel Sambuc# If the sources in your project are distributed over multiple directories 378*f4a2713aSLionel Sambuc# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy 379*f4a2713aSLionel Sambuc# in the documentation. The default is YES. 380*f4a2713aSLionel Sambuc 381*f4a2713aSLionel SambucSHOW_DIRECTORIES = YES 382*f4a2713aSLionel Sambuc 383*f4a2713aSLionel Sambuc# The FILE_VERSION_FILTER tag can be used to specify a program or script that 384*f4a2713aSLionel Sambuc# doxygen should invoke to get the current version for each file (typically from the 385*f4a2713aSLionel Sambuc# version control system). Doxygen will invoke the program by executing (via 386*f4a2713aSLionel Sambuc# popen()) the command <command> <input-file>, where <command> is the value of 387*f4a2713aSLionel Sambuc# the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file 388*f4a2713aSLionel Sambuc# provided by doxygen. Whatever the progam writes to standard output 389*f4a2713aSLionel Sambuc# is used as the file version. See the manual for examples. 390*f4a2713aSLionel Sambuc 391*f4a2713aSLionel Sambuc#FILE_VERSION_FILTER = 392*f4a2713aSLionel Sambuc 393*f4a2713aSLionel Sambuc#--------------------------------------------------------------------------- 394*f4a2713aSLionel Sambuc# configuration options related to warning and progress messages 395*f4a2713aSLionel Sambuc#--------------------------------------------------------------------------- 396*f4a2713aSLionel Sambuc 397*f4a2713aSLionel Sambuc# The QUIET tag can be used to turn on/off the messages that are generated 398*f4a2713aSLionel Sambuc# by doxygen. Possible values are YES and NO. If left blank NO is used. 399*f4a2713aSLionel Sambuc 400*f4a2713aSLionel SambucQUIET = NO 401*f4a2713aSLionel Sambuc 402*f4a2713aSLionel Sambuc# The WARNINGS tag can be used to turn on/off the warning messages that are 403*f4a2713aSLionel Sambuc# generated by doxygen. Possible values are YES and NO. If left blank 404*f4a2713aSLionel Sambuc# NO is used. 405*f4a2713aSLionel Sambuc 406*f4a2713aSLionel SambucWARNINGS = NO 407*f4a2713aSLionel Sambuc 408*f4a2713aSLionel Sambuc# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings 409*f4a2713aSLionel Sambuc# for undocumented members. If EXTRACT_ALL is set to YES then this flag will 410*f4a2713aSLionel Sambuc# automatically be disabled. 411*f4a2713aSLionel Sambuc 412*f4a2713aSLionel SambucWARN_IF_UNDOCUMENTED = NO 413*f4a2713aSLionel Sambuc 414*f4a2713aSLionel Sambuc# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for 415*f4a2713aSLionel Sambuc# potential errors in the documentation, such as not documenting some 416*f4a2713aSLionel Sambuc# parameters in a documented function, or documenting parameters that 417*f4a2713aSLionel Sambuc# don't exist or using markup commands wrongly. 418*f4a2713aSLionel Sambuc 419*f4a2713aSLionel SambucWARN_IF_DOC_ERROR = YES 420*f4a2713aSLionel Sambuc 421*f4a2713aSLionel Sambuc# This WARN_NO_PARAMDOC option can be abled to get warnings for 422*f4a2713aSLionel Sambuc# functions that are documented, but have no documentation for their parameters 423*f4a2713aSLionel Sambuc# or return value. If set to NO (the default) doxygen will only warn about 424*f4a2713aSLionel Sambuc# wrong or incomplete parameter documentation, but not about the absence of 425*f4a2713aSLionel Sambuc# documentation. 426*f4a2713aSLionel Sambuc 427*f4a2713aSLionel Sambuc#WARN_NO_PARAMDOC = NO 428*f4a2713aSLionel Sambuc 429*f4a2713aSLionel Sambuc# The WARN_FORMAT tag determines the format of the warning messages that 430*f4a2713aSLionel Sambuc# doxygen can produce. The string should contain the $file, $line, and $text 431*f4a2713aSLionel Sambuc# tags, which will be replaced by the file and line number from which the 432*f4a2713aSLionel Sambuc# warning originated and the warning text. Optionally the format may contain 433*f4a2713aSLionel Sambuc# $version, which will be replaced by the version of the file (if it could 434*f4a2713aSLionel Sambuc# be obtained via FILE_VERSION_FILTER) 435*f4a2713aSLionel Sambuc 436*f4a2713aSLionel SambucWARN_FORMAT = 437*f4a2713aSLionel Sambuc 438*f4a2713aSLionel Sambuc# The WARN_LOGFILE tag can be used to specify a file to which warning 439*f4a2713aSLionel Sambuc# and error messages should be written. If left blank the output is written 440*f4a2713aSLionel Sambuc# to stderr. 441*f4a2713aSLionel Sambuc 442*f4a2713aSLionel SambucWARN_LOGFILE = 443*f4a2713aSLionel Sambuc 444*f4a2713aSLionel Sambuc#--------------------------------------------------------------------------- 445*f4a2713aSLionel Sambuc# configuration options related to the input files 446*f4a2713aSLionel Sambuc#--------------------------------------------------------------------------- 447*f4a2713aSLionel Sambuc 448*f4a2713aSLionel Sambuc# The INPUT tag can be used to specify the files and/or directories that contain 449*f4a2713aSLionel Sambuc# documented source files. You may enter file names like "myfile.cpp" or 450*f4a2713aSLionel Sambuc# directories like "/usr/src/myproject". Separate the files or directories 451*f4a2713aSLionel Sambuc# with spaces. 452*f4a2713aSLionel Sambuc 453*f4a2713aSLionel SambucINPUT = @abs_srcdir@/../include \ 454*f4a2713aSLionel Sambuc @abs_srcdir@/../lib \ 455*f4a2713aSLionel Sambuc @abs_srcdir@/doxygen.intro 456*f4a2713aSLionel Sambuc 457*f4a2713aSLionel Sambuc# If the value of the INPUT tag contains directories, you can use the 458*f4a2713aSLionel Sambuc# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp 459*f4a2713aSLionel Sambuc# and *.h) to filter out the source-files in the directories. If left 460*f4a2713aSLionel Sambuc# blank the following patterns are tested: 461*f4a2713aSLionel Sambuc# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx 462*f4a2713aSLionel Sambuc# *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm 463*f4a2713aSLionel Sambuc 464*f4a2713aSLionel SambucFILE_PATTERNS = 465*f4a2713aSLionel Sambuc 466*f4a2713aSLionel Sambuc# The RECURSIVE tag can be used to turn specify whether or not subdirectories 467*f4a2713aSLionel Sambuc# should be searched for input files as well. Possible values are YES and NO. 468*f4a2713aSLionel Sambuc# If left blank NO is used. 469*f4a2713aSLionel Sambuc 470*f4a2713aSLionel SambucRECURSIVE = YES 471*f4a2713aSLionel Sambuc 472*f4a2713aSLionel Sambuc# The EXCLUDE tag can be used to specify files and/or directories that should 473*f4a2713aSLionel Sambuc# excluded from the INPUT source files. This way you can easily exclude a 474*f4a2713aSLionel Sambuc# subdirectory from a directory tree whose root is specified with the INPUT tag. 475*f4a2713aSLionel Sambuc 476*f4a2713aSLionel SambucEXCLUDE = 477*f4a2713aSLionel Sambuc 478*f4a2713aSLionel Sambuc# The EXCLUDE_SYMLINKS tag can be used select whether or not files or 479*f4a2713aSLionel Sambuc# directories that are symbolic links (a Unix filesystem feature) are excluded 480*f4a2713aSLionel Sambuc# from the input. 481*f4a2713aSLionel Sambuc 482*f4a2713aSLionel SambucEXCLUDE_SYMLINKS = NO 483*f4a2713aSLionel Sambuc 484*f4a2713aSLionel Sambuc# If the value of the INPUT tag contains directories, you can use the 485*f4a2713aSLionel Sambuc# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude 486*f4a2713aSLionel Sambuc# certain files from those directories. Note that the wildcards are matched 487*f4a2713aSLionel Sambuc# against the file with absolute path, so to exclude all test directories 488*f4a2713aSLionel Sambuc# for example use the pattern */test/* 489*f4a2713aSLionel Sambuc 490*f4a2713aSLionel SambucEXCLUDE_PATTERNS = 491*f4a2713aSLionel Sambuc 492*f4a2713aSLionel Sambuc# The EXAMPLE_PATH tag can be used to specify one or more files or 493*f4a2713aSLionel Sambuc# directories that contain example code fragments that are included (see 494*f4a2713aSLionel Sambuc# the \include command). 495*f4a2713aSLionel Sambuc 496*f4a2713aSLionel SambucEXAMPLE_PATH = @abs_srcdir@/../examples 497*f4a2713aSLionel Sambuc 498*f4a2713aSLionel Sambuc# If the value of the EXAMPLE_PATH tag contains directories, you can use the 499*f4a2713aSLionel Sambuc# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp 500*f4a2713aSLionel Sambuc# and *.h) to filter out the source-files in the directories. If left 501*f4a2713aSLionel Sambuc# blank all files are included. 502*f4a2713aSLionel Sambuc 503*f4a2713aSLionel SambucEXAMPLE_PATTERNS = 504*f4a2713aSLionel Sambuc 505*f4a2713aSLionel Sambuc# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be 506*f4a2713aSLionel Sambuc# searched for input files to be used with the \include or \dontinclude 507*f4a2713aSLionel Sambuc# commands irrespective of the value of the RECURSIVE tag. 508*f4a2713aSLionel Sambuc# Possible values are YES and NO. If left blank NO is used. 509*f4a2713aSLionel Sambuc 510*f4a2713aSLionel SambucEXAMPLE_RECURSIVE = YES 511*f4a2713aSLionel Sambuc 512*f4a2713aSLionel Sambuc# The IMAGE_PATH tag can be used to specify one or more files or 513*f4a2713aSLionel Sambuc# directories that contain image that are included in the documentation (see 514*f4a2713aSLionel Sambuc# the \image command). 515*f4a2713aSLionel Sambuc 516*f4a2713aSLionel SambucIMAGE_PATH = @abs_srcdir@/img 517*f4a2713aSLionel Sambuc 518*f4a2713aSLionel Sambuc# The INPUT_FILTER tag can be used to specify a program that doxygen should 519*f4a2713aSLionel Sambuc# invoke to filter for each input file. Doxygen will invoke the filter program 520*f4a2713aSLionel Sambuc# by executing (via popen()) the command <filter> <input-file>, where <filter> 521*f4a2713aSLionel Sambuc# is the value of the INPUT_FILTER tag, and <input-file> is the name of an 522*f4a2713aSLionel Sambuc# input file. Doxygen will then use the output that the filter program writes 523*f4a2713aSLionel Sambuc# to standard output. If FILTER_PATTERNS is specified, this tag will be 524*f4a2713aSLionel Sambuc# ignored. 525*f4a2713aSLionel Sambuc 526*f4a2713aSLionel SambucINPUT_FILTER = 527*f4a2713aSLionel Sambuc 528*f4a2713aSLionel Sambuc# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern 529*f4a2713aSLionel Sambuc# basis. Doxygen will compare the file name with each pattern and apply the 530*f4a2713aSLionel Sambuc# filter if there is a match. The filters are a list of the form: 531*f4a2713aSLionel Sambuc# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further 532*f4a2713aSLionel Sambuc# info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER 533*f4a2713aSLionel Sambuc# is applied to all files. 534*f4a2713aSLionel Sambuc 535*f4a2713aSLionel SambucFILTER_PATTERNS = 536*f4a2713aSLionel Sambuc 537*f4a2713aSLionel Sambuc# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using 538*f4a2713aSLionel Sambuc# INPUT_FILTER) will be used to filter the input files when producing source 539*f4a2713aSLionel Sambuc# files to browse (i.e. when SOURCE_BROWSER is set to YES). 540*f4a2713aSLionel Sambuc 541*f4a2713aSLionel SambucFILTER_SOURCE_FILES = NO 542*f4a2713aSLionel Sambuc 543*f4a2713aSLionel Sambuc#--------------------------------------------------------------------------- 544*f4a2713aSLionel Sambuc# configuration options related to source browsing 545*f4a2713aSLionel Sambuc#--------------------------------------------------------------------------- 546*f4a2713aSLionel Sambuc 547*f4a2713aSLionel Sambuc# If the SOURCE_BROWSER tag is set to YES then a list of source files will 548*f4a2713aSLionel Sambuc# be generated. Documented entities will be cross-referenced with these sources. 549*f4a2713aSLionel Sambuc# Note: To get rid of all source code in the generated output, make sure also 550*f4a2713aSLionel Sambuc# VERBATIM_HEADERS is set to NO. 551*f4a2713aSLionel Sambuc 552*f4a2713aSLionel SambucSOURCE_BROWSER = YES 553*f4a2713aSLionel Sambuc 554*f4a2713aSLionel Sambuc# Setting the INLINE_SOURCES tag to YES will include the body 555*f4a2713aSLionel Sambuc# of functions and classes directly in the documentation. 556*f4a2713aSLionel Sambuc 557*f4a2713aSLionel SambucINLINE_SOURCES = NO 558*f4a2713aSLionel Sambuc 559*f4a2713aSLionel Sambuc# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct 560*f4a2713aSLionel Sambuc# doxygen to hide any special comment blocks from generated source code 561*f4a2713aSLionel Sambuc# fragments. Normal C and C++ comments will always remain visible. 562*f4a2713aSLionel Sambuc 563*f4a2713aSLionel SambucSTRIP_CODE_COMMENTS = NO 564*f4a2713aSLionel Sambuc 565*f4a2713aSLionel Sambuc# If the REFERENCED_BY_RELATION tag is set to YES (the default) 566*f4a2713aSLionel Sambuc# then for each documented function all documented 567*f4a2713aSLionel Sambuc# functions referencing it will be listed. 568*f4a2713aSLionel Sambuc 569*f4a2713aSLionel SambucREFERENCED_BY_RELATION = YES 570*f4a2713aSLionel Sambuc 571*f4a2713aSLionel Sambuc# If the REFERENCES_RELATION tag is set to YES (the default) 572*f4a2713aSLionel Sambuc# then for each documented function all documented entities 573*f4a2713aSLionel Sambuc# called/used by that function will be listed. 574*f4a2713aSLionel Sambuc 575*f4a2713aSLionel SambucREFERENCES_RELATION = YES 576*f4a2713aSLionel Sambuc 577*f4a2713aSLionel Sambuc# If the USE_HTAGS tag is set to YES then the references to source code 578*f4a2713aSLionel Sambuc# will point to the HTML generated by the htags(1) tool instead of doxygen 579*f4a2713aSLionel Sambuc# built-in source browser. The htags tool is part of GNU's global source 580*f4a2713aSLionel Sambuc# tagging system (see http://www.gnu.org/software/global/global.html). You 581*f4a2713aSLionel Sambuc# will need version 4.8.6 or higher. 582*f4a2713aSLionel Sambuc 583*f4a2713aSLionel Sambuc#USE_HTAGS = NO 584*f4a2713aSLionel Sambuc 585*f4a2713aSLionel Sambuc# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen 586*f4a2713aSLionel Sambuc# will generate a verbatim copy of the header file for each class for 587*f4a2713aSLionel Sambuc# which an include is specified. Set to NO to disable this. 588*f4a2713aSLionel Sambuc 589*f4a2713aSLionel SambucVERBATIM_HEADERS = YES 590*f4a2713aSLionel Sambuc 591*f4a2713aSLionel Sambuc#--------------------------------------------------------------------------- 592*f4a2713aSLionel Sambuc# configuration options related to the alphabetical class index 593*f4a2713aSLionel Sambuc#--------------------------------------------------------------------------- 594*f4a2713aSLionel Sambuc 595*f4a2713aSLionel Sambuc# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index 596*f4a2713aSLionel Sambuc# of all compounds will be generated. Enable this if the project 597*f4a2713aSLionel Sambuc# contains a lot of classes, structs, unions or interfaces. 598*f4a2713aSLionel Sambuc 599*f4a2713aSLionel SambucALPHABETICAL_INDEX = YES 600*f4a2713aSLionel Sambuc 601*f4a2713aSLionel Sambuc# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then 602*f4a2713aSLionel Sambuc# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns 603*f4a2713aSLionel Sambuc# in which this list will be split (can be a number in the range [1..20]) 604*f4a2713aSLionel Sambuc 605*f4a2713aSLionel SambucCOLS_IN_ALPHA_INDEX = 4 606*f4a2713aSLionel Sambuc 607*f4a2713aSLionel Sambuc# In case all classes in a project start with a common prefix, all 608*f4a2713aSLionel Sambuc# classes will be put under the same header in the alphabetical index. 609*f4a2713aSLionel Sambuc# The IGNORE_PREFIX tag can be used to specify one or more prefixes that 610*f4a2713aSLionel Sambuc# should be ignored while generating the index headers. 611*f4a2713aSLionel Sambuc 612*f4a2713aSLionel SambucIGNORE_PREFIX = clang:: 613*f4a2713aSLionel Sambuc 614*f4a2713aSLionel Sambuc#--------------------------------------------------------------------------- 615*f4a2713aSLionel Sambuc# configuration options related to the HTML output 616*f4a2713aSLionel Sambuc#--------------------------------------------------------------------------- 617*f4a2713aSLionel Sambuc 618*f4a2713aSLionel Sambuc# If the GENERATE_HTML tag is set to YES (the default) Doxygen will 619*f4a2713aSLionel Sambuc# generate HTML output. 620*f4a2713aSLionel Sambuc 621*f4a2713aSLionel SambucGENERATE_HTML = YES 622*f4a2713aSLionel Sambuc 623*f4a2713aSLionel Sambuc# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. 624*f4a2713aSLionel Sambuc# If a relative path is entered the value of OUTPUT_DIRECTORY will be 625*f4a2713aSLionel Sambuc# put in front of it. If left blank `html' will be used as the default path. 626*f4a2713aSLionel Sambuc 627*f4a2713aSLionel SambucHTML_OUTPUT = html 628*f4a2713aSLionel Sambuc 629*f4a2713aSLionel Sambuc# The HTML_FILE_EXTENSION tag can be used to specify the file extension for 630*f4a2713aSLionel Sambuc# each generated HTML page (for example: .htm,.php,.asp). If it is left blank 631*f4a2713aSLionel Sambuc# doxygen will generate files with .html extension. 632*f4a2713aSLionel Sambuc 633*f4a2713aSLionel SambucHTML_FILE_EXTENSION = .html 634*f4a2713aSLionel Sambuc 635*f4a2713aSLionel Sambuc# The HTML_HEADER tag can be used to specify a personal HTML header for 636*f4a2713aSLionel Sambuc# each generated HTML page. If it is left blank doxygen will generate a 637*f4a2713aSLionel Sambuc# standard header. 638*f4a2713aSLionel Sambuc 639*f4a2713aSLionel SambucHTML_HEADER = @abs_srcdir@/doxygen.header 640*f4a2713aSLionel Sambuc 641*f4a2713aSLionel Sambuc# The HTML_FOOTER tag can be used to specify a personal HTML footer for 642*f4a2713aSLionel Sambuc# each generated HTML page. If it is left blank doxygen will generate a 643*f4a2713aSLionel Sambuc# standard footer. 644*f4a2713aSLionel Sambuc 645*f4a2713aSLionel SambucHTML_FOOTER = @abs_srcdir@/doxygen.footer 646*f4a2713aSLionel Sambuc 647*f4a2713aSLionel Sambuc# The HTML_STYLESHEET tag can be used to specify a user-defined cascading 648*f4a2713aSLionel Sambuc# style sheet that is used by each HTML page. It can be used to 649*f4a2713aSLionel Sambuc# fine-tune the look of the HTML output. If the tag is left blank doxygen 650*f4a2713aSLionel Sambuc# will generate a default style sheet. Note that doxygen will try to copy 651*f4a2713aSLionel Sambuc# the style sheet file to the HTML output directory, so don't put your own 652*f4a2713aSLionel Sambuc# stylesheet in the HTML output directory as well, or it will be erased! 653*f4a2713aSLionel Sambuc 654*f4a2713aSLionel SambucHTML_STYLESHEET = @abs_srcdir@/doxygen.css 655*f4a2713aSLionel Sambuc 656*f4a2713aSLionel Sambuc# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, 657*f4a2713aSLionel Sambuc# files or namespaces will be aligned in HTML using tables. If set to 658*f4a2713aSLionel Sambuc# NO a bullet list will be used. 659*f4a2713aSLionel Sambuc 660*f4a2713aSLionel SambucHTML_ALIGN_MEMBERS = YES 661*f4a2713aSLionel Sambuc 662*f4a2713aSLionel Sambuc# If the GENERATE_HTMLHELP tag is set to YES, additional index files 663*f4a2713aSLionel Sambuc# will be generated that can be used as input for tools like the 664*f4a2713aSLionel Sambuc# Microsoft HTML help workshop to generate a compressed HTML help file (.chm) 665*f4a2713aSLionel Sambuc# of the generated HTML documentation. 666*f4a2713aSLionel Sambuc 667*f4a2713aSLionel SambucGENERATE_HTMLHELP = NO 668*f4a2713aSLionel Sambuc 669*f4a2713aSLionel Sambuc# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can 670*f4a2713aSLionel Sambuc# be used to specify the file name of the resulting .chm file. You 671*f4a2713aSLionel Sambuc# can add a path in front of the file if the result should not be 672*f4a2713aSLionel Sambuc# written to the html output directory. 673*f4a2713aSLionel Sambuc 674*f4a2713aSLionel SambucCHM_FILE = 675*f4a2713aSLionel Sambuc 676*f4a2713aSLionel Sambuc# If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can 677*f4a2713aSLionel Sambuc# be used to specify the location (absolute path including file name) of 678*f4a2713aSLionel Sambuc# the HTML help compiler (hhc.exe). If non-empty doxygen will try to run 679*f4a2713aSLionel Sambuc# the HTML help compiler on the generated index.hhp. 680*f4a2713aSLionel Sambuc 681*f4a2713aSLionel SambucHHC_LOCATION = 682*f4a2713aSLionel Sambuc 683*f4a2713aSLionel Sambuc# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag 684*f4a2713aSLionel Sambuc# controls if a separate .chi index file is generated (YES) or that 685*f4a2713aSLionel Sambuc# it should be included in the master .chm file (NO). 686*f4a2713aSLionel Sambuc 687*f4a2713aSLionel SambucGENERATE_CHI = NO 688*f4a2713aSLionel Sambuc 689*f4a2713aSLionel Sambuc# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag 690*f4a2713aSLionel Sambuc# controls whether a binary table of contents is generated (YES) or a 691*f4a2713aSLionel Sambuc# normal table of contents (NO) in the .chm file. 692*f4a2713aSLionel Sambuc 693*f4a2713aSLionel SambucBINARY_TOC = NO 694*f4a2713aSLionel Sambuc 695*f4a2713aSLionel Sambuc# The TOC_EXPAND flag can be set to YES to add extra items for group members 696*f4a2713aSLionel Sambuc# to the contents of the HTML help documentation and to the tree view. 697*f4a2713aSLionel Sambuc 698*f4a2713aSLionel SambucTOC_EXPAND = NO 699*f4a2713aSLionel Sambuc 700*f4a2713aSLionel Sambuc# The DISABLE_INDEX tag can be used to turn on/off the condensed index at 701*f4a2713aSLionel Sambuc# top of each HTML page. The value NO (the default) enables the index and 702*f4a2713aSLionel Sambuc# the value YES disables it. 703*f4a2713aSLionel Sambuc 704*f4a2713aSLionel SambucDISABLE_INDEX = NO 705*f4a2713aSLionel Sambuc 706*f4a2713aSLionel Sambuc# This tag can be used to set the number of enum values (range [1..20]) 707*f4a2713aSLionel Sambuc# that doxygen will group on one line in the generated HTML documentation. 708*f4a2713aSLionel Sambuc 709*f4a2713aSLionel SambucENUM_VALUES_PER_LINE = 4 710*f4a2713aSLionel Sambuc 711*f4a2713aSLionel Sambuc# If the GENERATE_TREEVIEW tag is set to YES, a side panel will be 712*f4a2713aSLionel Sambuc# generated containing a tree-like index structure (just like the one that 713*f4a2713aSLionel Sambuc# is generated for HTML Help). For this to work a browser that supports 714*f4a2713aSLionel Sambuc# JavaScript, DHTML, CSS and frames is required (for instance Mozilla 1.0+, 715*f4a2713aSLionel Sambuc# Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are 716*f4a2713aSLionel Sambuc# probably better off using the HTML help feature. 717*f4a2713aSLionel Sambuc 718*f4a2713aSLionel SambucGENERATE_TREEVIEW = NO 719*f4a2713aSLionel Sambuc 720*f4a2713aSLionel Sambuc# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be 721*f4a2713aSLionel Sambuc# used to set the initial width (in pixels) of the frame in which the tree 722*f4a2713aSLionel Sambuc# is shown. 723*f4a2713aSLionel Sambuc 724*f4a2713aSLionel SambucTREEVIEW_WIDTH = 250 725*f4a2713aSLionel Sambuc 726*f4a2713aSLionel Sambuc#--------------------------------------------------------------------------- 727*f4a2713aSLionel Sambuc# configuration options related to the LaTeX output 728*f4a2713aSLionel Sambuc#--------------------------------------------------------------------------- 729*f4a2713aSLionel Sambuc 730*f4a2713aSLionel Sambuc# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will 731*f4a2713aSLionel Sambuc# generate Latex output. 732*f4a2713aSLionel Sambuc 733*f4a2713aSLionel SambucGENERATE_LATEX = NO 734*f4a2713aSLionel Sambuc 735*f4a2713aSLionel Sambuc# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. 736*f4a2713aSLionel Sambuc# If a relative path is entered the value of OUTPUT_DIRECTORY will be 737*f4a2713aSLionel Sambuc# put in front of it. If left blank `latex' will be used as the default path. 738*f4a2713aSLionel Sambuc 739*f4a2713aSLionel SambucLATEX_OUTPUT = 740*f4a2713aSLionel Sambuc 741*f4a2713aSLionel Sambuc# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be 742*f4a2713aSLionel Sambuc# invoked. If left blank `latex' will be used as the default command name. 743*f4a2713aSLionel Sambuc 744*f4a2713aSLionel SambucLATEX_CMD_NAME = latex 745*f4a2713aSLionel Sambuc 746*f4a2713aSLionel Sambuc# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to 747*f4a2713aSLionel Sambuc# generate index for LaTeX. If left blank `makeindex' will be used as the 748*f4a2713aSLionel Sambuc# default command name. 749*f4a2713aSLionel Sambuc 750*f4a2713aSLionel SambucMAKEINDEX_CMD_NAME = makeindex 751*f4a2713aSLionel Sambuc 752*f4a2713aSLionel Sambuc# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact 753*f4a2713aSLionel Sambuc# LaTeX documents. This may be useful for small projects and may help to 754*f4a2713aSLionel Sambuc# save some trees in general. 755*f4a2713aSLionel Sambuc 756*f4a2713aSLionel SambucCOMPACT_LATEX = NO 757*f4a2713aSLionel Sambuc 758*f4a2713aSLionel Sambuc# The PAPER_TYPE tag can be used to set the paper type that is used 759*f4a2713aSLionel Sambuc# by the printer. Possible values are: a4, a4wide, letter, legal and 760*f4a2713aSLionel Sambuc# executive. If left blank a4wide will be used. 761*f4a2713aSLionel Sambuc 762*f4a2713aSLionel SambucPAPER_TYPE = letter 763*f4a2713aSLionel Sambuc 764*f4a2713aSLionel Sambuc# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX 765*f4a2713aSLionel Sambuc# packages that should be included in the LaTeX output. 766*f4a2713aSLionel Sambuc 767*f4a2713aSLionel SambucEXTRA_PACKAGES = 768*f4a2713aSLionel Sambuc 769*f4a2713aSLionel Sambuc# The LATEX_HEADER tag can be used to specify a personal LaTeX header for 770*f4a2713aSLionel Sambuc# the generated latex document. The header should contain everything until 771*f4a2713aSLionel Sambuc# the first chapter. If it is left blank doxygen will generate a 772*f4a2713aSLionel Sambuc# standard header. Notice: only use this tag if you know what you are doing! 773*f4a2713aSLionel Sambuc 774*f4a2713aSLionel SambucLATEX_HEADER = 775*f4a2713aSLionel Sambuc 776*f4a2713aSLionel Sambuc# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated 777*f4a2713aSLionel Sambuc# is prepared for conversion to pdf (using ps2pdf). The pdf file will 778*f4a2713aSLionel Sambuc# contain links (just like the HTML output) instead of page references 779*f4a2713aSLionel Sambuc# This makes the output suitable for online browsing using a pdf viewer. 780*f4a2713aSLionel Sambuc 781*f4a2713aSLionel SambucPDF_HYPERLINKS = NO 782*f4a2713aSLionel Sambuc 783*f4a2713aSLionel Sambuc# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of 784*f4a2713aSLionel Sambuc# plain latex in the generated Makefile. Set this option to YES to get a 785*f4a2713aSLionel Sambuc# higher quality PDF documentation. 786*f4a2713aSLionel Sambuc 787*f4a2713aSLionel SambucUSE_PDFLATEX = NO 788*f4a2713aSLionel Sambuc 789*f4a2713aSLionel Sambuc# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. 790*f4a2713aSLionel Sambuc# command to the generated LaTeX files. This will instruct LaTeX to keep 791*f4a2713aSLionel Sambuc# running if errors occur, instead of asking the user for help. 792*f4a2713aSLionel Sambuc# This option is also used when generating formulas in HTML. 793*f4a2713aSLionel Sambuc 794*f4a2713aSLionel SambucLATEX_BATCHMODE = NO 795*f4a2713aSLionel Sambuc 796*f4a2713aSLionel Sambuc# If LATEX_HIDE_INDICES is set to YES then doxygen will not 797*f4a2713aSLionel Sambuc# include the index chapters (such as File Index, Compound Index, etc.) 798*f4a2713aSLionel Sambuc# in the output. 799*f4a2713aSLionel Sambuc 800*f4a2713aSLionel SambucLATEX_HIDE_INDICES = NO 801*f4a2713aSLionel Sambuc 802*f4a2713aSLionel Sambuc#--------------------------------------------------------------------------- 803*f4a2713aSLionel Sambuc# configuration options related to the RTF output 804*f4a2713aSLionel Sambuc#--------------------------------------------------------------------------- 805*f4a2713aSLionel Sambuc 806*f4a2713aSLionel Sambuc# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output 807*f4a2713aSLionel Sambuc# The RTF output is optimized for Word 97 and may not look very pretty with 808*f4a2713aSLionel Sambuc# other RTF readers or editors. 809*f4a2713aSLionel Sambuc 810*f4a2713aSLionel SambucGENERATE_RTF = NO 811*f4a2713aSLionel Sambuc 812*f4a2713aSLionel Sambuc# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. 813*f4a2713aSLionel Sambuc# If a relative path is entered the value of OUTPUT_DIRECTORY will be 814*f4a2713aSLionel Sambuc# put in front of it. If left blank `rtf' will be used as the default path. 815*f4a2713aSLionel Sambuc 816*f4a2713aSLionel SambucRTF_OUTPUT = 817*f4a2713aSLionel Sambuc 818*f4a2713aSLionel Sambuc# If the COMPACT_RTF tag is set to YES Doxygen generates more compact 819*f4a2713aSLionel Sambuc# RTF documents. This may be useful for small projects and may help to 820*f4a2713aSLionel Sambuc# save some trees in general. 821*f4a2713aSLionel Sambuc 822*f4a2713aSLionel SambucCOMPACT_RTF = NO 823*f4a2713aSLionel Sambuc 824*f4a2713aSLionel Sambuc# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated 825*f4a2713aSLionel Sambuc# will contain hyperlink fields. The RTF file will 826*f4a2713aSLionel Sambuc# contain links (just like the HTML output) instead of page references. 827*f4a2713aSLionel Sambuc# This makes the output suitable for online browsing using WORD or other 828*f4a2713aSLionel Sambuc# programs which support those fields. 829*f4a2713aSLionel Sambuc# Note: wordpad (write) and others do not support links. 830*f4a2713aSLionel Sambuc 831*f4a2713aSLionel SambucRTF_HYPERLINKS = NO 832*f4a2713aSLionel Sambuc 833*f4a2713aSLionel Sambuc# Load stylesheet definitions from file. Syntax is similar to doxygen's 834*f4a2713aSLionel Sambuc# config file, i.e. a series of assignments. You only have to provide 835*f4a2713aSLionel Sambuc# replacements, missing definitions are set to their default value. 836*f4a2713aSLionel Sambuc 837*f4a2713aSLionel SambucRTF_STYLESHEET_FILE = 838*f4a2713aSLionel Sambuc 839*f4a2713aSLionel Sambuc# Set optional variables used in the generation of an rtf document. 840*f4a2713aSLionel Sambuc# Syntax is similar to doxygen's config file. 841*f4a2713aSLionel Sambuc 842*f4a2713aSLionel SambucRTF_EXTENSIONS_FILE = 843*f4a2713aSLionel Sambuc 844*f4a2713aSLionel Sambuc#--------------------------------------------------------------------------- 845*f4a2713aSLionel Sambuc# configuration options related to the man page output 846*f4a2713aSLionel Sambuc#--------------------------------------------------------------------------- 847*f4a2713aSLionel Sambuc 848*f4a2713aSLionel Sambuc# If the GENERATE_MAN tag is set to YES (the default) Doxygen will 849*f4a2713aSLionel Sambuc# generate man pages 850*f4a2713aSLionel Sambuc 851*f4a2713aSLionel SambucGENERATE_MAN = NO 852*f4a2713aSLionel Sambuc 853*f4a2713aSLionel Sambuc# The MAN_OUTPUT tag is used to specify where the man pages will be put. 854*f4a2713aSLionel Sambuc# If a relative path is entered the value of OUTPUT_DIRECTORY will be 855*f4a2713aSLionel Sambuc# put in front of it. If left blank `man' will be used as the default path. 856*f4a2713aSLionel Sambuc 857*f4a2713aSLionel SambucMAN_OUTPUT = 858*f4a2713aSLionel Sambuc 859*f4a2713aSLionel Sambuc# The MAN_EXTENSION tag determines the extension that is added to 860*f4a2713aSLionel Sambuc# the generated man pages (default is the subroutine's section .3) 861*f4a2713aSLionel Sambuc 862*f4a2713aSLionel SambucMAN_EXTENSION = 863*f4a2713aSLionel Sambuc 864*f4a2713aSLionel Sambuc# If the MAN_LINKS tag is set to YES and Doxygen generates man output, 865*f4a2713aSLionel Sambuc# then it will generate one additional man file for each entity 866*f4a2713aSLionel Sambuc# documented in the real man page(s). These additional files 867*f4a2713aSLionel Sambuc# only source the real man page, but without them the man command 868*f4a2713aSLionel Sambuc# would be unable to find the correct page. The default is NO. 869*f4a2713aSLionel Sambuc 870*f4a2713aSLionel SambucMAN_LINKS = NO 871*f4a2713aSLionel Sambuc 872*f4a2713aSLionel Sambuc#--------------------------------------------------------------------------- 873*f4a2713aSLionel Sambuc# configuration options related to the XML output 874*f4a2713aSLionel Sambuc#--------------------------------------------------------------------------- 875*f4a2713aSLionel Sambuc 876*f4a2713aSLionel Sambuc# If the GENERATE_XML tag is set to YES Doxygen will 877*f4a2713aSLionel Sambuc# generate an XML file that captures the structure of 878*f4a2713aSLionel Sambuc# the code including all documentation. 879*f4a2713aSLionel Sambuc 880*f4a2713aSLionel SambucGENERATE_XML = NO 881*f4a2713aSLionel Sambuc 882*f4a2713aSLionel Sambuc# The XML_OUTPUT tag is used to specify where the XML pages will be put. 883*f4a2713aSLionel Sambuc# If a relative path is entered the value of OUTPUT_DIRECTORY will be 884*f4a2713aSLionel Sambuc# put in front of it. If left blank `xml' will be used as the default path. 885*f4a2713aSLionel Sambuc 886*f4a2713aSLionel SambucXML_OUTPUT = xml 887*f4a2713aSLionel Sambuc 888*f4a2713aSLionel Sambuc# The XML_SCHEMA tag can be used to specify an XML schema, 889*f4a2713aSLionel Sambuc# which can be used by a validating XML parser to check the 890*f4a2713aSLionel Sambuc# syntax of the XML files. 891*f4a2713aSLionel Sambuc 892*f4a2713aSLionel SambucXML_SCHEMA = 893*f4a2713aSLionel Sambuc 894*f4a2713aSLionel Sambuc# The XML_DTD tag can be used to specify an XML DTD, 895*f4a2713aSLionel Sambuc# which can be used by a validating XML parser to check the 896*f4a2713aSLionel Sambuc# syntax of the XML files. 897*f4a2713aSLionel Sambuc 898*f4a2713aSLionel SambucXML_DTD = 899*f4a2713aSLionel Sambuc 900*f4a2713aSLionel Sambuc# If the XML_PROGRAMLISTING tag is set to YES Doxygen will 901*f4a2713aSLionel Sambuc# dump the program listings (including syntax highlighting 902*f4a2713aSLionel Sambuc# and cross-referencing information) to the XML output. Note that 903*f4a2713aSLionel Sambuc# enabling this will significantly increase the size of the XML output. 904*f4a2713aSLionel Sambuc 905*f4a2713aSLionel SambucXML_PROGRAMLISTING = YES 906*f4a2713aSLionel Sambuc 907*f4a2713aSLionel Sambuc#--------------------------------------------------------------------------- 908*f4a2713aSLionel Sambuc# configuration options for the AutoGen Definitions output 909*f4a2713aSLionel Sambuc#--------------------------------------------------------------------------- 910*f4a2713aSLionel Sambuc 911*f4a2713aSLionel Sambuc# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will 912*f4a2713aSLionel Sambuc# generate an AutoGen Definitions (see autogen.sf.net) file 913*f4a2713aSLionel Sambuc# that captures the structure of the code including all 914*f4a2713aSLionel Sambuc# documentation. Note that this feature is still experimental 915*f4a2713aSLionel Sambuc# and incomplete at the moment. 916*f4a2713aSLionel Sambuc 917*f4a2713aSLionel SambucGENERATE_AUTOGEN_DEF = NO 918*f4a2713aSLionel Sambuc 919*f4a2713aSLionel Sambuc#--------------------------------------------------------------------------- 920*f4a2713aSLionel Sambuc# configuration options related to the Perl module output 921*f4a2713aSLionel Sambuc#--------------------------------------------------------------------------- 922*f4a2713aSLionel Sambuc 923*f4a2713aSLionel Sambuc# If the GENERATE_PERLMOD tag is set to YES Doxygen will 924*f4a2713aSLionel Sambuc# generate a Perl module file that captures the structure of 925*f4a2713aSLionel Sambuc# the code including all documentation. Note that this 926*f4a2713aSLionel Sambuc# feature is still experimental and incomplete at the 927*f4a2713aSLionel Sambuc# moment. 928*f4a2713aSLionel Sambuc 929*f4a2713aSLionel SambucGENERATE_PERLMOD = NO 930*f4a2713aSLionel Sambuc 931*f4a2713aSLionel Sambuc# If the PERLMOD_LATEX tag is set to YES Doxygen will generate 932*f4a2713aSLionel Sambuc# the necessary Makefile rules, Perl scripts and LaTeX code to be able 933*f4a2713aSLionel Sambuc# to generate PDF and DVI output from the Perl module output. 934*f4a2713aSLionel Sambuc 935*f4a2713aSLionel SambucPERLMOD_LATEX = NO 936*f4a2713aSLionel Sambuc 937*f4a2713aSLionel Sambuc# If the PERLMOD_PRETTY tag is set to YES the Perl module output will be 938*f4a2713aSLionel Sambuc# nicely formatted so it can be parsed by a human reader. This is useful 939*f4a2713aSLionel Sambuc# if you want to understand what is going on. On the other hand, if this 940*f4a2713aSLionel Sambuc# tag is set to NO the size of the Perl module output will be much smaller 941*f4a2713aSLionel Sambuc# and Perl will parse it just the same. 942*f4a2713aSLionel Sambuc 943*f4a2713aSLionel SambucPERLMOD_PRETTY = YES 944*f4a2713aSLionel Sambuc 945*f4a2713aSLionel Sambuc# The names of the make variables in the generated doxyrules.make file 946*f4a2713aSLionel Sambuc# are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. 947*f4a2713aSLionel Sambuc# This is useful so different doxyrules.make files included by the same 948*f4a2713aSLionel Sambuc# Makefile don't overwrite each other's variables. 949*f4a2713aSLionel Sambuc 950*f4a2713aSLionel SambucPERLMOD_MAKEVAR_PREFIX = 951*f4a2713aSLionel Sambuc 952*f4a2713aSLionel Sambuc#--------------------------------------------------------------------------- 953*f4a2713aSLionel Sambuc# Configuration options related to the preprocessor 954*f4a2713aSLionel Sambuc#--------------------------------------------------------------------------- 955*f4a2713aSLionel Sambuc 956*f4a2713aSLionel Sambuc# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will 957*f4a2713aSLionel Sambuc# evaluate all C-preprocessor directives found in the sources and include 958*f4a2713aSLionel Sambuc# files. 959*f4a2713aSLionel Sambuc 960*f4a2713aSLionel SambucENABLE_PREPROCESSING = YES 961*f4a2713aSLionel Sambuc 962*f4a2713aSLionel Sambuc# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro 963*f4a2713aSLionel Sambuc# names in the source code. If set to NO (the default) only conditional 964*f4a2713aSLionel Sambuc# compilation will be performed. Macro expansion can be done in a controlled 965*f4a2713aSLionel Sambuc# way by setting EXPAND_ONLY_PREDEF to YES. 966*f4a2713aSLionel Sambuc 967*f4a2713aSLionel SambucMACRO_EXPANSION = NO 968*f4a2713aSLionel Sambuc 969*f4a2713aSLionel Sambuc# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES 970*f4a2713aSLionel Sambuc# then the macro expansion is limited to the macros specified with the 971*f4a2713aSLionel Sambuc# PREDEFINED and EXPAND_AS_PREDEFINED tags. 972*f4a2713aSLionel Sambuc 973*f4a2713aSLionel SambucEXPAND_ONLY_PREDEF = NO 974*f4a2713aSLionel Sambuc 975*f4a2713aSLionel Sambuc# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files 976*f4a2713aSLionel Sambuc# in the INCLUDE_PATH (see below) will be search if a #include is found. 977*f4a2713aSLionel Sambuc 978*f4a2713aSLionel SambucSEARCH_INCLUDES = YES 979*f4a2713aSLionel Sambuc 980*f4a2713aSLionel Sambuc# The INCLUDE_PATH tag can be used to specify one or more directories that 981*f4a2713aSLionel Sambuc# contain include files that are not input files but should be processed by 982*f4a2713aSLionel Sambuc# the preprocessor. 983*f4a2713aSLionel Sambuc 984*f4a2713aSLionel SambucINCLUDE_PATH = ../include 985*f4a2713aSLionel Sambuc 986*f4a2713aSLionel Sambuc# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard 987*f4a2713aSLionel Sambuc# patterns (like *.h and *.hpp) to filter out the header-files in the 988*f4a2713aSLionel Sambuc# directories. If left blank, the patterns specified with FILE_PATTERNS will 989*f4a2713aSLionel Sambuc# be used. 990*f4a2713aSLionel Sambuc 991*f4a2713aSLionel SambucINCLUDE_FILE_PATTERNS = 992*f4a2713aSLionel Sambuc 993*f4a2713aSLionel Sambuc# The PREDEFINED tag can be used to specify one or more macro names that 994*f4a2713aSLionel Sambuc# are defined before the preprocessor is started (similar to the -D option of 995*f4a2713aSLionel Sambuc# gcc). The argument of the tag is a list of macros of the form: name 996*f4a2713aSLionel Sambuc# or name=definition (no spaces). If the definition and the = are 997*f4a2713aSLionel Sambuc# omitted =1 is assumed. To prevent a macro definition from being 998*f4a2713aSLionel Sambuc# undefined via #undef or recursively expanded use the := operator 999*f4a2713aSLionel Sambuc# instead of the = operator. 1000*f4a2713aSLionel Sambuc 1001*f4a2713aSLionel SambucPREDEFINED = 1002*f4a2713aSLionel Sambuc 1003*f4a2713aSLionel Sambuc# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then 1004*f4a2713aSLionel Sambuc# this tag can be used to specify a list of macro names that should be expanded. 1005*f4a2713aSLionel Sambuc# The macro definition that is found in the sources will be used. 1006*f4a2713aSLionel Sambuc# Use the PREDEFINED tag if you want to use a different macro definition. 1007*f4a2713aSLionel Sambuc 1008*f4a2713aSLionel SambucEXPAND_AS_DEFINED = 1009*f4a2713aSLionel Sambuc 1010*f4a2713aSLionel Sambuc# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then 1011*f4a2713aSLionel Sambuc# doxygen's preprocessor will remove all function-like macros that are alone 1012*f4a2713aSLionel Sambuc# on a line, have an all uppercase name, and do not end with a semicolon. Such 1013*f4a2713aSLionel Sambuc# function macros are typically used for boiler-plate code, and will confuse 1014*f4a2713aSLionel Sambuc# the parser if not removed. 1015*f4a2713aSLionel Sambuc 1016*f4a2713aSLionel SambucSKIP_FUNCTION_MACROS = YES 1017*f4a2713aSLionel Sambuc 1018*f4a2713aSLionel Sambuc#--------------------------------------------------------------------------- 1019*f4a2713aSLionel Sambuc# Configuration::additions related to external references 1020*f4a2713aSLionel Sambuc#--------------------------------------------------------------------------- 1021*f4a2713aSLionel Sambuc 1022*f4a2713aSLionel Sambuc# The TAGFILES option can be used to specify one or more tagfiles. 1023*f4a2713aSLionel Sambuc# Optionally an initial location of the external documentation 1024*f4a2713aSLionel Sambuc# can be added for each tagfile. The format of a tag file without 1025*f4a2713aSLionel Sambuc# this location is as follows: 1026*f4a2713aSLionel Sambuc# TAGFILES = file1 file2 ... 1027*f4a2713aSLionel Sambuc# Adding location for the tag files is done as follows: 1028*f4a2713aSLionel Sambuc# TAGFILES = file1=loc1 "file2 = loc2" ... 1029*f4a2713aSLionel Sambuc# where "loc1" and "loc2" can be relative or absolute paths or 1030*f4a2713aSLionel Sambuc# URLs. If a location is present for each tag, the installdox tool 1031*f4a2713aSLionel Sambuc# does not have to be run to correct the links. 1032*f4a2713aSLionel Sambuc# Note that each tag file must have a unique name 1033*f4a2713aSLionel Sambuc# (where the name does NOT include the path) 1034*f4a2713aSLionel Sambuc# If a tag file is not located in the directory in which doxygen 1035*f4a2713aSLionel Sambuc# is run, you must also specify the path to the tagfile here. 1036*f4a2713aSLionel Sambuc 1037*f4a2713aSLionel SambucTAGFILES = 1038*f4a2713aSLionel Sambuc 1039*f4a2713aSLionel Sambuc# When a file name is specified after GENERATE_TAGFILE, doxygen will create 1040*f4a2713aSLionel Sambuc# a tag file that is based on the input files it reads. 1041*f4a2713aSLionel Sambuc 1042*f4a2713aSLionel SambucGENERATE_TAGFILE = 1043*f4a2713aSLionel Sambuc 1044*f4a2713aSLionel Sambuc# If the ALLEXTERNALS tag is set to YES all external classes will be listed 1045*f4a2713aSLionel Sambuc# in the class index. If set to NO only the inherited external classes 1046*f4a2713aSLionel Sambuc# will be listed. 1047*f4a2713aSLionel Sambuc 1048*f4a2713aSLionel SambucALLEXTERNALS = YES 1049*f4a2713aSLionel Sambuc 1050*f4a2713aSLionel Sambuc# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed 1051*f4a2713aSLionel Sambuc# in the modules index. If set to NO, only the current project's groups will 1052*f4a2713aSLionel Sambuc# be listed. 1053*f4a2713aSLionel Sambuc 1054*f4a2713aSLionel SambucEXTERNAL_GROUPS = YES 1055*f4a2713aSLionel Sambuc 1056*f4a2713aSLionel Sambuc# The PERL_PATH should be the absolute path and name of the perl script 1057*f4a2713aSLionel Sambuc# interpreter (i.e. the result of `which perl'). 1058*f4a2713aSLionel Sambuc 1059*f4a2713aSLionel SambucPERL_PATH = 1060*f4a2713aSLionel Sambuc 1061*f4a2713aSLionel Sambuc#--------------------------------------------------------------------------- 1062*f4a2713aSLionel Sambuc# Configuration options related to the dot tool 1063*f4a2713aSLionel Sambuc#--------------------------------------------------------------------------- 1064*f4a2713aSLionel Sambuc 1065*f4a2713aSLionel Sambuc# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will 1066*f4a2713aSLionel Sambuc# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base 1067*f4a2713aSLionel Sambuc# or super classes. Setting the tag to NO turns the diagrams off. Note that 1068*f4a2713aSLionel Sambuc# this option is superseded by the HAVE_DOT option below. This is only a 1069*f4a2713aSLionel Sambuc# fallback. It is recommended to install and use dot, since it yields more 1070*f4a2713aSLionel Sambuc# powerful graphs. 1071*f4a2713aSLionel Sambuc 1072*f4a2713aSLionel SambucCLASS_DIAGRAMS = YES 1073*f4a2713aSLionel Sambuc 1074*f4a2713aSLionel Sambuc# If set to YES, the inheritance and collaboration graphs will hide 1075*f4a2713aSLionel Sambuc# inheritance and usage relations if the target is undocumented 1076*f4a2713aSLionel Sambuc# or is not a class. 1077*f4a2713aSLionel Sambuc 1078*f4a2713aSLionel SambucHIDE_UNDOC_RELATIONS = NO 1079*f4a2713aSLionel Sambuc 1080*f4a2713aSLionel Sambuc# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is 1081*f4a2713aSLionel Sambuc# available from the path. This tool is part of Graphviz, a graph visualization 1082*f4a2713aSLionel Sambuc# toolkit from AT&T and Lucent Bell Labs. The other options in this section 1083*f4a2713aSLionel Sambuc# have no effect if this option is set to NO (the default) 1084*f4a2713aSLionel Sambuc 1085*f4a2713aSLionel SambucHAVE_DOT = YES 1086*f4a2713aSLionel Sambuc 1087*f4a2713aSLionel Sambuc# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen 1088*f4a2713aSLionel Sambuc# will generate a graph for each documented class showing the direct and 1089*f4a2713aSLionel Sambuc# indirect inheritance relations. Setting this tag to YES will force the 1090*f4a2713aSLionel Sambuc# the CLASS_DIAGRAMS tag to NO. 1091*f4a2713aSLionel Sambuc 1092*f4a2713aSLionel SambucCLASS_GRAPH = YES 1093*f4a2713aSLionel Sambuc 1094*f4a2713aSLionel Sambuc# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen 1095*f4a2713aSLionel Sambuc# will generate a graph for each documented class showing the direct and 1096*f4a2713aSLionel Sambuc# indirect implementation dependencies (inheritance, containment, and 1097*f4a2713aSLionel Sambuc# class references variables) of the class with other documented classes. 1098*f4a2713aSLionel Sambuc 1099*f4a2713aSLionel SambucCOLLABORATION_GRAPH = YES 1100*f4a2713aSLionel Sambuc 1101*f4a2713aSLionel Sambuc# If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen 1102*f4a2713aSLionel Sambuc# will generate a graph for groups, showing the direct groups dependencies 1103*f4a2713aSLionel Sambuc 1104*f4a2713aSLionel Sambuc#GROUP_GRAPHS = YES 1105*f4a2713aSLionel Sambuc 1106*f4a2713aSLionel Sambuc# If the UML_LOOK tag is set to YES doxygen will generate inheritance and 1107*f4a2713aSLionel Sambuc# collaboration diagrams in a style similar to the OMG's Unified Modeling 1108*f4a2713aSLionel Sambuc# Language. 1109*f4a2713aSLionel Sambuc 1110*f4a2713aSLionel SambucUML_LOOK = NO 1111*f4a2713aSLionel Sambuc 1112*f4a2713aSLionel Sambuc# If set to YES, the inheritance and collaboration graphs will show the 1113*f4a2713aSLionel Sambuc# relations between templates and their instances. 1114*f4a2713aSLionel Sambuc 1115*f4a2713aSLionel SambucTEMPLATE_RELATIONS = YES 1116*f4a2713aSLionel Sambuc 1117*f4a2713aSLionel Sambuc# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT 1118*f4a2713aSLionel Sambuc# tags are set to YES then doxygen will generate a graph for each documented 1119*f4a2713aSLionel Sambuc# file showing the direct and indirect include dependencies of the file with 1120*f4a2713aSLionel Sambuc# other documented files. 1121*f4a2713aSLionel Sambuc 1122*f4a2713aSLionel SambucINCLUDE_GRAPH = YES 1123*f4a2713aSLionel Sambuc 1124*f4a2713aSLionel Sambuc# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and 1125*f4a2713aSLionel Sambuc# HAVE_DOT tags are set to YES then doxygen will generate a graph for each 1126*f4a2713aSLionel Sambuc# documented header file showing the documented files that directly or 1127*f4a2713aSLionel Sambuc# indirectly include this file. 1128*f4a2713aSLionel Sambuc 1129*f4a2713aSLionel SambucINCLUDED_BY_GRAPH = YES 1130*f4a2713aSLionel Sambuc 1131*f4a2713aSLionel Sambuc# If the CALL_GRAPH and HAVE_DOT tags are set to YES then doxygen will 1132*f4a2713aSLionel Sambuc# generate a call dependency graph for every global function or class method. 1133*f4a2713aSLionel Sambuc# Note that enabling this option will significantly increase the time of a run. 1134*f4a2713aSLionel Sambuc# So in most cases it will be better to enable call graphs for selected 1135*f4a2713aSLionel Sambuc# functions only using the \callgraph command. 1136*f4a2713aSLionel Sambuc 1137*f4a2713aSLionel SambucCALL_GRAPH = NO 1138*f4a2713aSLionel Sambuc 1139*f4a2713aSLionel Sambuc# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen 1140*f4a2713aSLionel Sambuc# will graphical hierarchy of all classes instead of a textual one. 1141*f4a2713aSLionel Sambuc 1142*f4a2713aSLionel SambucGRAPHICAL_HIERARCHY = YES 1143*f4a2713aSLionel Sambuc 1144*f4a2713aSLionel Sambuc# If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES 1145*f4a2713aSLionel Sambuc# then doxygen will show the dependencies a directory has on other directories 1146*f4a2713aSLionel Sambuc# in a graphical way. The dependency relations are determined by the #include 1147*f4a2713aSLionel Sambuc# relations between the files in the directories. 1148*f4a2713aSLionel Sambuc 1149*f4a2713aSLionel Sambuc#DIRECTORY_GRAPH = YES 1150*f4a2713aSLionel Sambuc 1151*f4a2713aSLionel Sambuc# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images 1152*f4a2713aSLionel Sambuc# generated by dot. Possible values are png, jpg, or gif 1153*f4a2713aSLionel Sambuc# If left blank png will be used. 1154*f4a2713aSLionel Sambuc 1155*f4a2713aSLionel SambucDOT_IMAGE_FORMAT = png 1156*f4a2713aSLionel Sambuc 1157*f4a2713aSLionel Sambuc# The tag DOT_PATH can be used to specify the path where the dot tool can be 1158*f4a2713aSLionel Sambuc# found. If left blank, it is assumed the dot tool can be found in the path. 1159*f4a2713aSLionel Sambuc 1160*f4a2713aSLionel SambucDOT_PATH = @DOT@ 1161*f4a2713aSLionel Sambuc 1162*f4a2713aSLionel Sambuc# The DOTFILE_DIRS tag can be used to specify one or more directories that 1163*f4a2713aSLionel Sambuc# contain dot files that are included in the documentation (see the 1164*f4a2713aSLionel Sambuc# \dotfile command). 1165*f4a2713aSLionel Sambuc 1166*f4a2713aSLionel SambucDOTFILE_DIRS = 1167*f4a2713aSLionel Sambuc 1168*f4a2713aSLionel Sambuc# The MAX_DOT_GRAPH_WIDTH tag can be used to set the maximum allowed width 1169*f4a2713aSLionel Sambuc# (in pixels) of the graphs generated by dot. If a graph becomes larger than 1170*f4a2713aSLionel Sambuc# this value, doxygen will try to truncate the graph, so that it fits within 1171*f4a2713aSLionel Sambuc# the specified constraint. Beware that most browsers cannot cope with very 1172*f4a2713aSLionel Sambuc# large images. 1173*f4a2713aSLionel Sambuc 1174*f4a2713aSLionel SambucMAX_DOT_GRAPH_WIDTH = 1024 1175*f4a2713aSLionel Sambuc 1176*f4a2713aSLionel Sambuc# The MAX_DOT_GRAPH_HEIGHT tag can be used to set the maximum allows height 1177*f4a2713aSLionel Sambuc# (in pixels) of the graphs generated by dot. If a graph becomes larger than 1178*f4a2713aSLionel Sambuc# this value, doxygen will try to truncate the graph, so that it fits within 1179*f4a2713aSLionel Sambuc# the specified constraint. Beware that most browsers cannot cope with very 1180*f4a2713aSLionel Sambuc# large images. 1181*f4a2713aSLionel Sambuc 1182*f4a2713aSLionel SambucMAX_DOT_GRAPH_HEIGHT = 1024 1183*f4a2713aSLionel Sambuc 1184*f4a2713aSLionel Sambuc# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the 1185*f4a2713aSLionel Sambuc# graphs generated by dot. A depth value of 3 means that only nodes reachable 1186*f4a2713aSLionel Sambuc# from the root by following a path via at most 3 edges will be shown. Nodes 1187*f4a2713aSLionel Sambuc# that lay further from the root node will be omitted. Note that setting this 1188*f4a2713aSLionel Sambuc# option to 1 or 2 may greatly reduce the computation time needed for large 1189*f4a2713aSLionel Sambuc# code bases. Also note that a graph may be further truncated if the graph's 1190*f4a2713aSLionel Sambuc# image dimensions are not sufficient to fit the graph (see MAX_DOT_GRAPH_WIDTH 1191*f4a2713aSLionel Sambuc# and MAX_DOT_GRAPH_HEIGHT). If 0 is used for the depth value (the default), 1192*f4a2713aSLionel Sambuc# the graph is not depth-constrained. 1193*f4a2713aSLionel Sambuc 1194*f4a2713aSLionel SambucMAX_DOT_GRAPH_DEPTH = 0 1195*f4a2713aSLionel Sambuc 1196*f4a2713aSLionel Sambuc# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent 1197*f4a2713aSLionel Sambuc# background. This is disabled by default, which results in a white background. 1198*f4a2713aSLionel Sambuc# Warning: Depending on the platform used, enabling this option may lead to 1199*f4a2713aSLionel Sambuc# badly anti-aliased labels on the edges of a graph (i.e. they become hard to 1200*f4a2713aSLionel Sambuc# read). 1201*f4a2713aSLionel Sambuc 1202*f4a2713aSLionel Sambuc#DOT_TRANSPARENT = NO 1203*f4a2713aSLionel Sambuc 1204*f4a2713aSLionel Sambuc# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output 1205*f4a2713aSLionel Sambuc# files in one run (i.e. multiple -o and -T options on the command line). This 1206*f4a2713aSLionel Sambuc# makes dot run faster, but since only newer versions of dot (>1.8.10) 1207*f4a2713aSLionel Sambuc# support this, this feature is disabled by default. 1208*f4a2713aSLionel Sambuc 1209*f4a2713aSLionel Sambuc#DOT_MULTI_TARGETS = NO 1210*f4a2713aSLionel Sambuc 1211*f4a2713aSLionel Sambuc# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will 1212*f4a2713aSLionel Sambuc# generate a legend page explaining the meaning of the various boxes and 1213*f4a2713aSLionel Sambuc# arrows in the dot generated graphs. 1214*f4a2713aSLionel Sambuc 1215*f4a2713aSLionel SambucGENERATE_LEGEND = YES 1216*f4a2713aSLionel Sambuc 1217*f4a2713aSLionel Sambuc# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will 1218*f4a2713aSLionel Sambuc# remove the intermediate dot files that are used to generate 1219*f4a2713aSLionel Sambuc# the various graphs. 1220*f4a2713aSLionel Sambuc 1221*f4a2713aSLionel SambucDOT_CLEANUP = YES 1222*f4a2713aSLionel Sambuc 1223*f4a2713aSLionel Sambuc#--------------------------------------------------------------------------- 1224*f4a2713aSLionel Sambuc# Configuration::additions related to the search engine 1225*f4a2713aSLionel Sambuc#--------------------------------------------------------------------------- 1226*f4a2713aSLionel Sambuc 1227*f4a2713aSLionel Sambuc# When the SEARCHENGINE tag is enabled doxygen will generate a search box 1228*f4a2713aSLionel Sambuc# for the HTML output. The underlying search engine uses javascript 1229*f4a2713aSLionel Sambuc# and DHTML and should work on any modern browser. Note that when using 1230*f4a2713aSLionel Sambuc# HTML help (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets 1231*f4a2713aSLionel Sambuc# (GENERATE_DOCSET) there is already a search function so this one should 1232*f4a2713aSLionel Sambuc# typically be disabled. For large projects the javascript based search engine 1233*f4a2713aSLionel Sambuc# can be slow, then enabling SERVER_BASED_SEARCH may provide a better solution. 1234*f4a2713aSLionel Sambuc 1235*f4a2713aSLionel SambucSEARCHENGINE = @enable_searchengine@ 1236*f4a2713aSLionel Sambuc 1237*f4a2713aSLionel Sambuc# When the SERVER_BASED_SEARCH tag is enabled the search engine will be 1238*f4a2713aSLionel Sambuc# implemented using a PHP enabled web server instead of at the web client 1239*f4a2713aSLionel Sambuc# using Javascript. Doxygen will generate the search PHP script and index 1240*f4a2713aSLionel Sambuc# file to put on the web server. The advantage of the server 1241*f4a2713aSLionel Sambuc# based approach is that it scales better to large projects and allows 1242*f4a2713aSLionel Sambuc# full text search. The disadvances is that it is more difficult to setup 1243*f4a2713aSLionel Sambuc# and does not have live searching capabilities. 1244*f4a2713aSLionel Sambuc 1245*f4a2713aSLionel SambucSERVER_BASED_SEARCH = @enable_server_based_search@ 1246*f4a2713aSLionel Sambuc 1247*f4a2713aSLionel SambucSEARCHENGINE_URL = @searchengine_url@ 1248*f4a2713aSLionel Sambuc 1249*f4a2713aSLionel SambucEXTERNAL_SEARCH = @enable_external_search@ 1250*f4a2713aSLionel Sambuc 1251*f4a2713aSLionel SambucEXTERNAL_SEARCH_ID = clang 1252*f4a2713aSLionel Sambuc 1253*f4a2713aSLionel SambucEXTRA_SEARCH_MAPPINGS = @extra_search_mappings@ 1254