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