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