|
kusano |
7d535a |
# Doxyfile 1.5.5
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# This file describes the settings to be used by the documentation system
|
|
kusano |
7d535a |
# doxygen (www.doxygen.org) for a project
|
|
kusano |
7d535a |
#
|
|
kusano |
7d535a |
# All text after a hash (#) is considered a comment and will be ignored
|
|
kusano |
7d535a |
# The format is:
|
|
kusano |
7d535a |
# TAG = value [value, ...]
|
|
kusano |
7d535a |
# For lists items can also be appended using:
|
|
kusano |
7d535a |
# TAG += value [value, ...]
|
|
kusano |
7d535a |
# Values that contain spaces should be placed between quotes (" ")
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
#---------------------------------------------------------------------------
|
|
kusano |
7d535a |
# Project related configuration options
|
|
kusano |
7d535a |
#---------------------------------------------------------------------------
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# This tag specifies the encoding used for all characters in the config file
|
|
kusano |
7d535a |
# that follow. The default is UTF-8 which is also the encoding used for all
|
|
kusano |
7d535a |
# text before the first occurrence of this tag. Doxygen uses libiconv (or the
|
|
kusano |
7d535a |
# iconv built into libc) for the transcoding. See
|
|
kusano |
7d535a |
# http://www.gnu.org/software/libiconv for the list of possible encodings.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
DOXYFILE_ENCODING = UTF-8
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The PROJECT_NAME tag is a single word (or a sequence of words surrounded
|
|
kusano |
7d535a |
# by quotes) that should identify the project.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
PROJECT_NAME = SuperLU
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The PROJECT_NUMBER tag can be used to enter a project or revision number.
|
|
kusano |
7d535a |
# This could be handy for archiving the generated documentation or
|
|
kusano |
7d535a |
# if some version control system is used.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
PROJECT_NUMBER = 4.1
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
|
|
kusano |
7d535a |
# base path where the generated documentation will be put.
|
|
kusano |
7d535a |
# If a relative path is entered, it will be relative to the location
|
|
kusano |
7d535a |
# where doxygen was started. If left blank the current directory will be used.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
OUTPUT_DIRECTORY = DOC
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create
|
|
kusano |
7d535a |
# 4096 sub-directories (in 2 levels) under the output directory of each output
|
|
kusano |
7d535a |
# format and will distribute the generated files over these directories.
|
|
kusano |
7d535a |
# Enabling this option can be useful when feeding doxygen a huge amount of
|
|
kusano |
7d535a |
# source files, where putting all generated files in the same directory would
|
|
kusano |
7d535a |
# otherwise cause performance problems for the file system.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
CREATE_SUBDIRS = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The OUTPUT_LANGUAGE tag is used to specify the language in which all
|
|
kusano |
7d535a |
# documentation generated by doxygen is written. Doxygen will use this
|
|
kusano |
7d535a |
# information to generate all constant output in the proper language.
|
|
kusano |
7d535a |
# The default language is English, other supported languages are:
|
|
kusano |
7d535a |
# Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional,
|
|
kusano |
7d535a |
# Croatian, Czech, Danish, Dutch, Farsi, Finnish, French, German, Greek,
|
|
kusano |
7d535a |
# Hungarian, Italian, Japanese, Japanese-en (Japanese with English messages),
|
|
kusano |
7d535a |
# Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, Polish,
|
|
kusano |
7d535a |
# Portuguese, Romanian, Russian, Serbian, Slovak, Slovene, Spanish, Swedish,
|
|
kusano |
7d535a |
# and Ukrainian.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
OUTPUT_LANGUAGE = English
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will
|
|
kusano |
7d535a |
# include brief member descriptions after the members that are listed in
|
|
kusano |
7d535a |
# the file and class documentation (similar to JavaDoc).
|
|
kusano |
7d535a |
# Set to NO to disable this.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
BRIEF_MEMBER_DESC = YES
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend
|
|
kusano |
7d535a |
# the brief description of a member or function before the detailed description.
|
|
kusano |
7d535a |
# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the
|
|
kusano |
7d535a |
# brief descriptions will be completely suppressed.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
REPEAT_BRIEF = No
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# This tag implements a quasi-intelligent brief description abbreviator
|
|
kusano |
7d535a |
# that is used to form the text in various listings. Each string
|
|
kusano |
7d535a |
# in this list, if found as the leading text of the brief description, will be
|
|
kusano |
7d535a |
# stripped from the text and the result after processing the whole list, is
|
|
kusano |
7d535a |
# used as the annotated text. Otherwise, the brief description is used as-is.
|
|
kusano |
7d535a |
# If left blank, the following values are used ("$name" is automatically
|
|
kusano |
7d535a |
# replaced with the name of the entity): "The $name class" "The $name widget"
|
|
kusano |
7d535a |
# "The $name file" "is" "provides" "specifies" "contains"
|
|
kusano |
7d535a |
# "represents" "a" "an" "the"
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
ABBREVIATE_BRIEF =
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then
|
|
kusano |
7d535a |
# Doxygen will generate a detailed section even if there is only a brief
|
|
kusano |
7d535a |
# description.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
ALWAYS_DETAILED_SEC = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all
|
|
kusano |
7d535a |
# inherited members of a class in the documentation of that class as if those
|
|
kusano |
7d535a |
# members were ordinary class members. Constructors, destructors and assignment
|
|
kusano |
7d535a |
# operators of the base classes will not be shown.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
INLINE_INHERITED_MEMB = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full
|
|
kusano |
7d535a |
# path before files name in the file list and in the header files. If set
|
|
kusano |
7d535a |
# to NO the shortest path that makes the file name unique will be used.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
FULL_PATH_NAMES = YES
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag
|
|
kusano |
7d535a |
# can be used to strip a user-defined part of the path. Stripping is
|
|
kusano |
7d535a |
# only done if one of the specified strings matches the left-hand part of
|
|
kusano |
7d535a |
# the path. The tag can be used to show relative paths in the file list.
|
|
kusano |
7d535a |
# If left blank the directory from which doxygen is run is used as the
|
|
kusano |
7d535a |
# path to strip.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
STRIP_FROM_PATH =
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of
|
|
kusano |
7d535a |
# the path mentioned in the documentation of a class, which tells
|
|
kusano |
7d535a |
# the reader which header file to include in order to use a class.
|
|
kusano |
7d535a |
# If left blank only the name of the header file containing the class
|
|
kusano |
7d535a |
# definition is used. Otherwise one should specify the include paths that
|
|
kusano |
7d535a |
# are normally passed to the compiler using the -I flag.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
STRIP_FROM_INC_PATH =
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter
|
|
kusano |
7d535a |
# (but less readable) file names. This can be useful is your file systems
|
|
kusano |
7d535a |
# doesn't support long names like on DOS, Mac, or CD-ROM.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
SHORT_NAMES = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen
|
|
kusano |
7d535a |
# will interpret the first line (until the first dot) of a JavaDoc-style
|
|
kusano |
7d535a |
# comment as the brief description. If set to NO, the JavaDoc
|
|
kusano |
7d535a |
# comments will behave just like regular Qt-style comments
|
|
kusano |
7d535a |
# (thus requiring an explicit @brief command for a brief description.)
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
JAVADOC_AUTOBRIEF = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the QT_AUTOBRIEF tag is set to YES then Doxygen will
|
|
kusano |
7d535a |
# interpret the first line (until the first dot) of a Qt-style
|
|
kusano |
7d535a |
# comment as the brief description. If set to NO, the comments
|
|
kusano |
7d535a |
# will behave just like regular Qt-style comments (thus requiring
|
|
kusano |
7d535a |
# an explicit \brief command for a brief description.)
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
QT_AUTOBRIEF = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen
|
|
kusano |
7d535a |
# treat a multi-line C++ special comment block (i.e. a block of //! or ///
|
|
kusano |
7d535a |
# comments) as a brief description. This used to be the default behaviour.
|
|
kusano |
7d535a |
# The new default is to treat a multi-line C++ comment block as a detailed
|
|
kusano |
7d535a |
# description. Set this tag to YES if you prefer the old behaviour instead.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
MULTILINE_CPP_IS_BRIEF = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the DETAILS_AT_TOP tag is set to YES then Doxygen
|
|
kusano |
7d535a |
# will output the detailed description near the top, like JavaDoc.
|
|
kusano |
7d535a |
# If set to NO, the detailed description appears after the member
|
|
kusano |
7d535a |
# documentation.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
DETAILS_AT_TOP = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented
|
|
kusano |
7d535a |
# member inherits the documentation from any documented member that it
|
|
kusano |
7d535a |
# re-implements.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
INHERIT_DOCS = YES
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce
|
|
kusano |
7d535a |
# a new page for each member. If set to NO, the documentation of a member will
|
|
kusano |
7d535a |
# be part of the file/class/namespace that contains it.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
SEPARATE_MEMBER_PAGES = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The TAB_SIZE tag can be used to set the number of spaces in a tab.
|
|
kusano |
7d535a |
# Doxygen uses this value to replace tabs by spaces in code fragments.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
TAB_SIZE = 8
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# This tag can be used to specify a number of aliases that acts
|
|
kusano |
7d535a |
# as commands in the documentation. An alias has the form "name=value".
|
|
kusano |
7d535a |
# For example adding "sideeffect=\par Side Effects:\n" will allow you to
|
|
kusano |
7d535a |
# put the command \sideeffect (or @sideeffect) in the documentation, which
|
|
kusano |
7d535a |
# will result in a user-defined paragraph with heading "Side Effects:".
|
|
kusano |
7d535a |
# You can put \n's in the value part of an alias to insert newlines.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
ALIASES =
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C
|
|
kusano |
7d535a |
# sources only. Doxygen will then generate output that is more tailored for C.
|
|
kusano |
7d535a |
# For instance, some of the names that are used will be different. The list
|
|
kusano |
7d535a |
# of all members will be omitted, etc.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
OPTIMIZE_OUTPUT_FOR_C = YES
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java
|
|
kusano |
7d535a |
# sources only. Doxygen will then generate output that is more tailored for
|
|
kusano |
7d535a |
# Java. For instance, namespaces will be presented as packages, qualified
|
|
kusano |
7d535a |
# scopes will look different, etc.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
OPTIMIZE_OUTPUT_JAVA = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran
|
|
kusano |
7d535a |
# sources only. Doxygen will then generate output that is more tailored for
|
|
kusano |
7d535a |
# Fortran.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
OPTIMIZE_FOR_FORTRAN = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL
|
|
kusano |
7d535a |
# sources. Doxygen will then generate output that is tailored for
|
|
kusano |
7d535a |
# VHDL.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
OPTIMIZE_OUTPUT_VHDL = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want
|
|
kusano |
7d535a |
# to include (a tag file for) the STL sources as input, then you should
|
|
kusano |
7d535a |
# set this tag to YES in order to let doxygen match functions declarations and
|
|
kusano |
7d535a |
# definitions whose arguments contain STL classes (e.g. func(std::string); v.s.
|
|
kusano |
7d535a |
# func(std::string) {}). This also make the inheritance and collaboration
|
|
kusano |
7d535a |
# diagrams that involve STL classes more complete and accurate.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
BUILTIN_STL_SUPPORT = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If you use Microsoft's C++/CLI language, you should set this option to YES to
|
|
kusano |
7d535a |
# enable parsing support.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
CPP_CLI_SUPPORT = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# Set the SIP_SUPPORT tag to YES if your project consists of sip sources only.
|
|
kusano |
7d535a |
# Doxygen will parse them like normal C++ but will assume all classes use public
|
|
kusano |
7d535a |
# instead of private inheritance when no explicit protection keyword is present.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
SIP_SUPPORT = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC
|
|
kusano |
7d535a |
# tag is set to YES, then doxygen will reuse the documentation of the first
|
|
kusano |
7d535a |
# member in the group (if any) for the other members of the group. By default
|
|
kusano |
7d535a |
# all members of a group must be documented explicitly.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
DISTRIBUTE_GROUP_DOC = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# Set the SUBGROUPING tag to YES (the default) to allow class member groups of
|
|
kusano |
7d535a |
# the same type (for instance a group of public functions) to be put as a
|
|
kusano |
7d535a |
# subgroup of that type (e.g. under the Public Functions section). Set it to
|
|
kusano |
7d535a |
# NO to prevent subgrouping. Alternatively, this can be done per class using
|
|
kusano |
7d535a |
# the \nosubgrouping command.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
SUBGROUPING = YES
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum
|
|
kusano |
7d535a |
# is documented as struct, union, or enum with the name of the typedef. So
|
|
kusano |
7d535a |
# typedef struct TypeS {} TypeT, will appear in the documentation as a struct
|
|
kusano |
7d535a |
# with name TypeT. When disabled the typedef will appear as a member of a file,
|
|
kusano |
7d535a |
# namespace, or class. And the struct will be named TypeS. This can typically
|
|
kusano |
7d535a |
# be useful for C code in case the coding convention dictates that all compound
|
|
kusano |
7d535a |
# types are typedef'ed and only the typedef is referenced, never the tag name.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
TYPEDEF_HIDES_STRUCT = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
#---------------------------------------------------------------------------
|
|
kusano |
7d535a |
# Build related configuration options
|
|
kusano |
7d535a |
#---------------------------------------------------------------------------
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in
|
|
kusano |
7d535a |
# documentation are documented, even if no documentation was available.
|
|
kusano |
7d535a |
# Private class members and static file members will be hidden unless
|
|
kusano |
7d535a |
# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
EXTRACT_ALL = YEs
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the EXTRACT_PRIVATE tag is set to YES all private members of a class
|
|
kusano |
7d535a |
# will be included in the documentation.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
EXTRACT_PRIVATE = YES
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the EXTRACT_STATIC tag is set to YES all static members of a file
|
|
kusano |
7d535a |
# will be included in the documentation.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
EXTRACT_STATIC = YES
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs)
|
|
kusano |
7d535a |
# defined locally in source files will be included in the documentation.
|
|
kusano |
7d535a |
# If set to NO only classes defined in header files are included.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
EXTRACT_LOCAL_CLASSES = YES
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# This flag is only useful for Objective-C code. When set to YES local
|
|
kusano |
7d535a |
# methods, which are defined in the implementation section but not in
|
|
kusano |
7d535a |
# the interface are included in the documentation.
|
|
kusano |
7d535a |
# If set to NO (the default) only methods in the interface are included.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
EXTRACT_LOCAL_METHODS = YES
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If this flag is set to YES, the members of anonymous namespaces will be
|
|
kusano |
7d535a |
# extracted and appear in the documentation as a namespace called
|
|
kusano |
7d535a |
# 'anonymous_namespace{file}', where file will be replaced with the base
|
|
kusano |
7d535a |
# name of the file that contains the anonymous namespace. By default
|
|
kusano |
7d535a |
# anonymous namespace are hidden.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
EXTRACT_ANON_NSPACES = YES
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all
|
|
kusano |
7d535a |
# undocumented members of documented classes, files or namespaces.
|
|
kusano |
7d535a |
# If set to NO (the default) these members will be included in the
|
|
kusano |
7d535a |
# various overviews, but no documentation section is generated.
|
|
kusano |
7d535a |
# This option has no effect if EXTRACT_ALL is enabled.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
HIDE_UNDOC_MEMBERS = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all
|
|
kusano |
7d535a |
# undocumented classes that are normally visible in the class hierarchy.
|
|
kusano |
7d535a |
# If set to NO (the default) these classes will be included in the various
|
|
kusano |
7d535a |
# overviews. This option has no effect if EXTRACT_ALL is enabled.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
HIDE_UNDOC_CLASSES = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all
|
|
kusano |
7d535a |
# friend (class|struct|union) declarations.
|
|
kusano |
7d535a |
# If set to NO (the default) these declarations will be included in the
|
|
kusano |
7d535a |
# documentation.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
HIDE_FRIEND_COMPOUNDS = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any
|
|
kusano |
7d535a |
# documentation blocks found inside the body of a function.
|
|
kusano |
7d535a |
# If set to NO (the default) these blocks will be appended to the
|
|
kusano |
7d535a |
# function's detailed documentation block.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
HIDE_IN_BODY_DOCS = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The INTERNAL_DOCS tag determines if documentation
|
|
kusano |
7d535a |
# that is typed after a \internal command is included. If the tag is set
|
|
kusano |
7d535a |
# to NO (the default) then the documentation will be excluded.
|
|
kusano |
7d535a |
# Set it to YES to include the internal documentation.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
INTERNAL_DOCS = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate
|
|
kusano |
7d535a |
# file names in lower-case letters. If set to YES upper-case letters are also
|
|
kusano |
7d535a |
# allowed. This is useful if you have classes or files whose names only differ
|
|
kusano |
7d535a |
# in case and if your file system supports case sensitive file names. Windows
|
|
kusano |
7d535a |
# and Mac users are advised to set this option to NO.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
CASE_SENSE_NAMES = YES
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen
|
|
kusano |
7d535a |
# will show members with their full class and namespace scopes in the
|
|
kusano |
7d535a |
# documentation. If set to YES the scope will be hidden.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
HIDE_SCOPE_NAMES = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen
|
|
kusano |
7d535a |
# will put a list of the files that are included by a file in the documentation
|
|
kusano |
7d535a |
# of that file.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
SHOW_INCLUDE_FILES = YES
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the INLINE_INFO tag is set to YES (the default) then a tag [inline]
|
|
kusano |
7d535a |
# is inserted in the documentation for inline members.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
INLINE_INFO = YES
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen
|
|
kusano |
7d535a |
# will sort the (detailed) documentation of file and class members
|
|
kusano |
7d535a |
# alphabetically by member name. If set to NO the members will appear in
|
|
kusano |
7d535a |
# declaration order.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
SORT_MEMBER_DOCS = YES
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the
|
|
kusano |
7d535a |
# brief documentation of file, namespace and class members alphabetically
|
|
kusano |
7d535a |
# by member name. If set to NO (the default) the members will appear in
|
|
kusano |
7d535a |
# declaration order.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
SORT_BRIEF_DOCS = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the
|
|
kusano |
7d535a |
# hierarchy of group names into alphabetical order. If set to NO (the default)
|
|
kusano |
7d535a |
# the group names will appear in their defined order.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
SORT_GROUP_NAMES = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be
|
|
kusano |
7d535a |
# sorted by fully-qualified names, including namespaces. If set to
|
|
kusano |
7d535a |
# NO (the default), the class list will be sorted only by class name,
|
|
kusano |
7d535a |
# not including the namespace part.
|
|
kusano |
7d535a |
# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES.
|
|
kusano |
7d535a |
# Note: This option applies only to the class list, not to the
|
|
kusano |
7d535a |
# alphabetical list.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
SORT_BY_SCOPE_NAME = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The GENERATE_TODOLIST tag can be used to enable (YES) or
|
|
kusano |
7d535a |
# disable (NO) the todo list. This list is created by putting \todo
|
|
kusano |
7d535a |
# commands in the documentation.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
GENERATE_TODOLIST = YES
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The GENERATE_TESTLIST tag can be used to enable (YES) or
|
|
kusano |
7d535a |
# disable (NO) the test list. This list is created by putting \test
|
|
kusano |
7d535a |
# commands in the documentation.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
GENERATE_TESTLIST = YES
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The GENERATE_BUGLIST tag can be used to enable (YES) or
|
|
kusano |
7d535a |
# disable (NO) the bug list. This list is created by putting \bug
|
|
kusano |
7d535a |
# commands in the documentation.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
GENERATE_BUGLIST = YES
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or
|
|
kusano |
7d535a |
# disable (NO) the deprecated list. This list is created by putting
|
|
kusano |
7d535a |
# \deprecated commands in the documentation.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
GENERATE_DEPRECATEDLIST= YES
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The ENABLED_SECTIONS tag can be used to enable conditional
|
|
kusano |
7d535a |
# documentation sections, marked by \if sectionname ... \endif.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
ENABLED_SECTIONS =
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The MAX_INITIALIZER_LINES tag determines the maximum number of lines
|
|
kusano |
7d535a |
# the initial value of a variable or define consists of for it to appear in
|
|
kusano |
7d535a |
# the documentation. If the initializer consists of more lines than specified
|
|
kusano |
7d535a |
# here it will be hidden. Use a value of 0 to hide initializers completely.
|
|
kusano |
7d535a |
# The appearance of the initializer of individual variables and defines in the
|
|
kusano |
7d535a |
# documentation can be controlled using \showinitializer or \hideinitializer
|
|
kusano |
7d535a |
# command in the documentation regardless of this setting.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
MAX_INITIALIZER_LINES = 30
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# Set the SHOW_USED_FILES tag to NO to disable the list of files generated
|
|
kusano |
7d535a |
# at the bottom of the documentation of classes and structs. If set to YES the
|
|
kusano |
7d535a |
# list will mention the files that were used to generate the documentation.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
SHOW_USED_FILES = YES
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the sources in your project are distributed over multiple directories
|
|
kusano |
7d535a |
# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy
|
|
kusano |
7d535a |
# in the documentation. The default is NO.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
SHOW_DIRECTORIES = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The FILE_VERSION_FILTER tag can be used to specify a program or script that
|
|
kusano |
7d535a |
# doxygen should invoke to get the current version for each file (typically from
|
|
kusano |
7d535a |
# the version control system). Doxygen will invoke the program by executing (via
|
|
kusano |
7d535a |
# popen()) the command <command> <input-file>, where <command> is the value of </input-file>
|
|
kusano |
7d535a |
# the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file </input-file>
|
|
kusano |
7d535a |
# provided by doxygen. Whatever the program writes to standard output
|
|
kusano |
7d535a |
# is used as the file version. See the manual for examples.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
FILE_VERSION_FILTER =
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
#---------------------------------------------------------------------------
|
|
kusano |
7d535a |
# configuration options related to warning and progress messages
|
|
kusano |
7d535a |
#---------------------------------------------------------------------------
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The QUIET tag can be used to turn on/off the messages that are generated
|
|
kusano |
7d535a |
# by doxygen. Possible values are YES and NO. If left blank NO is used.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
QUIET = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The WARNINGS tag can be used to turn on/off the warning messages that are
|
|
kusano |
7d535a |
# generated by doxygen. Possible values are YES and NO. If left blank
|
|
kusano |
7d535a |
# NO is used.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
WARNINGS = YES
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings
|
|
kusano |
7d535a |
# for undocumented members. If EXTRACT_ALL is set to YES then this flag will
|
|
kusano |
7d535a |
# automatically be disabled.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
WARN_IF_UNDOCUMENTED = YES
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for
|
|
kusano |
7d535a |
# potential errors in the documentation, such as not documenting some
|
|
kusano |
7d535a |
# parameters in a documented function, or documenting parameters that
|
|
kusano |
7d535a |
# don't exist or using markup commands wrongly.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
WARN_IF_DOC_ERROR = YES
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# This WARN_NO_PARAMDOC option can be abled to get warnings for
|
|
kusano |
7d535a |
# functions that are documented, but have no documentation for their parameters
|
|
kusano |
7d535a |
# or return value. If set to NO (the default) doxygen will only warn about
|
|
kusano |
7d535a |
# wrong or incomplete parameter documentation, but not about the absence of
|
|
kusano |
7d535a |
# documentation.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
WARN_NO_PARAMDOC = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The WARN_FORMAT tag determines the format of the warning messages that
|
|
kusano |
7d535a |
# doxygen can produce. The string should contain the $file, $line, and $text
|
|
kusano |
7d535a |
# tags, which will be replaced by the file and line number from which the
|
|
kusano |
7d535a |
# warning originated and the warning text. Optionally the format may contain
|
|
kusano |
7d535a |
# $version, which will be replaced by the version of the file (if it could
|
|
kusano |
7d535a |
# be obtained via FILE_VERSION_FILTER)
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
WARN_FORMAT = "$file:$line: $text"
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The WARN_LOGFILE tag can be used to specify a file to which warning
|
|
kusano |
7d535a |
# and error messages should be written. If left blank the output is written
|
|
kusano |
7d535a |
# to stderr.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
WARN_LOGFILE =
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
#---------------------------------------------------------------------------
|
|
kusano |
7d535a |
# configuration options related to the input files
|
|
kusano |
7d535a |
#---------------------------------------------------------------------------
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The INPUT tag can be used to specify the files and/or directories that contain
|
|
kusano |
7d535a |
# documented source files. You may enter file names like "myfile.cpp" or
|
|
kusano |
7d535a |
# directories like "/usr/src/myproject". Separate the files or directories
|
|
kusano |
7d535a |
# with spaces.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
INPUT = SRC/ \
|
|
kusano |
7d535a |
EXAMPLE/
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# This tag can be used to specify the character encoding of the source files
|
|
kusano |
7d535a |
# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is
|
|
kusano |
7d535a |
# also the default input encoding. Doxygen uses libiconv (or the iconv built
|
|
kusano |
7d535a |
# into libc) for the transcoding. See http://www.gnu.org/software/libiconv for
|
|
kusano |
7d535a |
# the list of possible encodings.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
INPUT_ENCODING = UTF-8
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the value of the INPUT tag contains directories, you can use the
|
|
kusano |
7d535a |
# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
|
|
kusano |
7d535a |
# and *.h) to filter out the source-files in the directories. If left
|
|
kusano |
7d535a |
# blank the following patterns are tested:
|
|
kusano |
7d535a |
# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx
|
|
kusano |
7d535a |
# *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py *.f90
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
FILE_PATTERNS =
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The RECURSIVE tag can be used to turn specify whether or not subdirectories
|
|
kusano |
7d535a |
# should be searched for input files as well. Possible values are YES and NO.
|
|
kusano |
7d535a |
# If left blank NO is used.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
RECURSIVE = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The EXCLUDE tag can be used to specify files and/or directories that should
|
|
kusano |
7d535a |
# excluded from the INPUT source files. This way you can easily exclude a
|
|
kusano |
7d535a |
# subdirectory from a directory tree whose root is specified with the INPUT tag.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
EXCLUDE =
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The EXCLUDE_SYMLINKS tag can be used select whether or not files or
|
|
kusano |
7d535a |
# directories that are symbolic links (a Unix filesystem feature) are excluded
|
|
kusano |
7d535a |
# from the input.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
EXCLUDE_SYMLINKS = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the value of the INPUT tag contains directories, you can use the
|
|
kusano |
7d535a |
# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude
|
|
kusano |
7d535a |
# certain files from those directories. Note that the wildcards are matched
|
|
kusano |
7d535a |
# against the file with absolute path, so to exclude all test directories
|
|
kusano |
7d535a |
# for example use the pattern */test/*
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
EXCLUDE_PATTERNS =
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
|
|
kusano |
7d535a |
# (namespaces, classes, functions, etc.) that should be excluded from the
|
|
kusano |
7d535a |
# output. The symbol name can be a fully qualified name, a word, or if the
|
|
kusano |
7d535a |
# wildcard * is used, a substring. Examples: ANamespace, AClass,
|
|
kusano |
7d535a |
# AClass::ANamespace, ANamespace::*Test
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
EXCLUDE_SYMBOLS =
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The EXAMPLE_PATH tag can be used to specify one or more files or
|
|
kusano |
7d535a |
# directories that contain example code fragments that are included (see
|
|
kusano |
7d535a |
# the \include command).
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
EXAMPLE_PATH =
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the value of the EXAMPLE_PATH tag contains directories, you can use the
|
|
kusano |
7d535a |
# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
|
|
kusano |
7d535a |
# and *.h) to filter out the source-files in the directories. If left
|
|
kusano |
7d535a |
# blank all files are included.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
EXAMPLE_PATTERNS =
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be
|
|
kusano |
7d535a |
# searched for input files to be used with the \include or \dontinclude
|
|
kusano |
7d535a |
# commands irrespective of the value of the RECURSIVE tag.
|
|
kusano |
7d535a |
# Possible values are YES and NO. If left blank NO is used.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
EXAMPLE_RECURSIVE = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The IMAGE_PATH tag can be used to specify one or more files or
|
|
kusano |
7d535a |
# directories that contain image that are included in the documentation (see
|
|
kusano |
7d535a |
# the \image command).
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
IMAGE_PATH =
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The INPUT_FILTER tag can be used to specify a program that doxygen should
|
|
kusano |
7d535a |
# invoke to filter for each input file. Doxygen will invoke the filter program
|
|
kusano |
7d535a |
# by executing (via popen()) the command <filter> <input-file>, where <filter> </filter></input-file></filter>
|
|
kusano |
7d535a |
# is the value of the INPUT_FILTER tag, and <input-file> is the name of an </input-file>
|
|
kusano |
7d535a |
# input file. Doxygen will then use the output that the filter program writes
|
|
kusano |
7d535a |
# to standard output. If FILTER_PATTERNS is specified, this tag will be
|
|
kusano |
7d535a |
# ignored.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
INPUT_FILTER =
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern
|
|
kusano |
7d535a |
# basis. Doxygen will compare the file name with each pattern and apply the
|
|
kusano |
7d535a |
# filter if there is a match. The filters are a list of the form:
|
|
kusano |
7d535a |
# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further
|
|
kusano |
7d535a |
# info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER
|
|
kusano |
7d535a |
# is applied to all files.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
FILTER_PATTERNS =
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using
|
|
kusano |
7d535a |
# INPUT_FILTER) will be used to filter the input files when producing source
|
|
kusano |
7d535a |
# files to browse (i.e. when SOURCE_BROWSER is set to YES).
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
FILTER_SOURCE_FILES = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
#---------------------------------------------------------------------------
|
|
kusano |
7d535a |
# configuration options related to source browsing
|
|
kusano |
7d535a |
#---------------------------------------------------------------------------
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the SOURCE_BROWSER tag is set to YES then a list of source files will
|
|
kusano |
7d535a |
# be generated. Documented entities will be cross-referenced with these sources.
|
|
kusano |
7d535a |
# Note: To get rid of all source code in the generated output, make sure also
|
|
kusano |
7d535a |
# VERBATIM_HEADERS is set to NO.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
SOURCE_BROWSER = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# Setting the INLINE_SOURCES tag to YES will include the body
|
|
kusano |
7d535a |
# of functions and classes directly in the documentation.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
INLINE_SOURCES = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct
|
|
kusano |
7d535a |
# doxygen to hide any special comment blocks from generated source code
|
|
kusano |
7d535a |
# fragments. Normal C and C++ comments will always remain visible.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
STRIP_CODE_COMMENTS = YES
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the REFERENCED_BY_RELATION tag is set to YES (the default)
|
|
kusano |
7d535a |
# then for each documented function all documented
|
|
kusano |
7d535a |
# functions referencing it will be listed.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
REFERENCED_BY_RELATION = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the REFERENCES_RELATION tag is set to YES (the default)
|
|
kusano |
7d535a |
# then for each documented function all documented entities
|
|
kusano |
7d535a |
# called/used by that function will be listed.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
REFERENCES_RELATION = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the REFERENCES_LINK_SOURCE tag is set to YES (the default)
|
|
kusano |
7d535a |
# and SOURCE_BROWSER tag is set to YES, then the hyperlinks from
|
|
kusano |
7d535a |
# functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will
|
|
kusano |
7d535a |
# link to the source code. Otherwise they will link to the documentstion.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
REFERENCES_LINK_SOURCE = YES
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the USE_HTAGS tag is set to YES then the references to source code
|
|
kusano |
7d535a |
# will point to the HTML generated by the htags(1) tool instead of doxygen
|
|
kusano |
7d535a |
# built-in source browser. The htags tool is part of GNU's global source
|
|
kusano |
7d535a |
# tagging system (see http://www.gnu.org/software/global/global.html). You
|
|
kusano |
7d535a |
# will need version 4.8.6 or higher.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
USE_HTAGS = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen
|
|
kusano |
7d535a |
# will generate a verbatim copy of the header file for each class for
|
|
kusano |
7d535a |
# which an include is specified. Set to NO to disable this.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
VERBATIM_HEADERS = YES
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
#---------------------------------------------------------------------------
|
|
kusano |
7d535a |
# configuration options related to the alphabetical class index
|
|
kusano |
7d535a |
#---------------------------------------------------------------------------
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index
|
|
kusano |
7d535a |
# of all compounds will be generated. Enable this if the project
|
|
kusano |
7d535a |
# contains a lot of classes, structs, unions or interfaces.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
ALPHABETICAL_INDEX = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then
|
|
kusano |
7d535a |
# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns
|
|
kusano |
7d535a |
# in which this list will be split (can be a number in the range [1..20])
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
COLS_IN_ALPHA_INDEX = 5
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# In case all classes in a project start with a common prefix, all
|
|
kusano |
7d535a |
# classes will be put under the same header in the alphabetical index.
|
|
kusano |
7d535a |
# The IGNORE_PREFIX tag can be used to specify one or more prefixes that
|
|
kusano |
7d535a |
# should be ignored while generating the index headers.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
IGNORE_PREFIX =
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
#---------------------------------------------------------------------------
|
|
kusano |
7d535a |
# configuration options related to the HTML output
|
|
kusano |
7d535a |
#---------------------------------------------------------------------------
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the GENERATE_HTML tag is set to YES (the default) Doxygen will
|
|
kusano |
7d535a |
# generate HTML output.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
GENERATE_HTML = YES
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The HTML_OUTPUT tag is used to specify where the HTML docs will be put.
|
|
kusano |
7d535a |
# If a relative path is entered the value of OUTPUT_DIRECTORY will be
|
|
kusano |
7d535a |
# put in front of it. If left blank `html' will be used as the default path.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
HTML_OUTPUT = html
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The HTML_FILE_EXTENSION tag can be used to specify the file extension for
|
|
kusano |
7d535a |
# each generated HTML page (for example: .htm,.php,.asp). If it is left blank
|
|
kusano |
7d535a |
# doxygen will generate files with .html extension.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
HTML_FILE_EXTENSION = .html
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The HTML_HEADER tag can be used to specify a personal HTML header for
|
|
kusano |
7d535a |
# each generated HTML page. If it is left blank doxygen will generate a
|
|
kusano |
7d535a |
# standard header.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
HTML_HEADER =
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The HTML_FOOTER tag can be used to specify a personal HTML footer for
|
|
kusano |
7d535a |
# each generated HTML page. If it is left blank doxygen will generate a
|
|
kusano |
7d535a |
# standard footer.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
HTML_FOOTER =
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The HTML_STYLESHEET tag can be used to specify a user-defined cascading
|
|
kusano |
7d535a |
# style sheet that is used by each HTML page. It can be used to
|
|
kusano |
7d535a |
# fine-tune the look of the HTML output. If the tag is left blank doxygen
|
|
kusano |
7d535a |
# will generate a default style sheet. Note that doxygen will try to copy
|
|
kusano |
7d535a |
# the style sheet file to the HTML output directory, so don't put your own
|
|
kusano |
7d535a |
# stylesheet in the HTML output directory as well, or it will be erased!
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
HTML_STYLESHEET =
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes,
|
|
kusano |
7d535a |
# files or namespaces will be aligned in HTML using tables. If set to
|
|
kusano |
7d535a |
# NO a bullet list will be used.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
HTML_ALIGN_MEMBERS = YES
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the GENERATE_HTMLHELP tag is set to YES, additional index files
|
|
kusano |
7d535a |
# will be generated that can be used as input for tools like the
|
|
kusano |
7d535a |
# Microsoft HTML help workshop to generate a compiled HTML help file (.chm)
|
|
kusano |
7d535a |
# of the generated HTML documentation.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
GENERATE_HTMLHELP = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the GENERATE_DOCSET tag is set to YES, additional index files
|
|
kusano |
7d535a |
# will be generated that can be used as input for Apple's Xcode 3
|
|
kusano |
7d535a |
# integrated development environment, introduced with OSX 10.5 (Leopard).
|
|
kusano |
7d535a |
# To create a documentation set, doxygen will generate a Makefile in the
|
|
kusano |
7d535a |
# HTML output directory. Running make will produce the docset in that
|
|
kusano |
7d535a |
# directory and running "make install" will install the docset in
|
|
kusano |
7d535a |
# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find
|
|
kusano |
7d535a |
# it at startup.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
GENERATE_DOCSET = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# When GENERATE_DOCSET tag is set to YES, this tag determines the name of the
|
|
kusano |
7d535a |
# feed. A documentation feed provides an umbrella under which multiple
|
|
kusano |
7d535a |
# documentation sets from a single provider (such as a company or product suite)
|
|
kusano |
7d535a |
# can be grouped.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
DOCSET_FEEDNAME = "Doxygen generated docs"
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# When GENERATE_DOCSET tag is set to YES, this tag specifies a string that
|
|
kusano |
7d535a |
# should uniquely identify the documentation set bundle. This should be a
|
|
kusano |
7d535a |
# reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen
|
|
kusano |
7d535a |
# will append .docset to the name.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
DOCSET_BUNDLE_ID = org.doxygen.Project
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
|
|
kusano |
7d535a |
# documentation will contain sections that can be hidden and shown after the
|
|
kusano |
7d535a |
# page has loaded. For this to work a browser that supports
|
|
kusano |
7d535a |
# JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox
|
|
kusano |
7d535a |
# Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari).
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
HTML_DYNAMIC_SECTIONS = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can
|
|
kusano |
7d535a |
# be used to specify the file name of the resulting .chm file. You
|
|
kusano |
7d535a |
# can add a path in front of the file if the result should not be
|
|
kusano |
7d535a |
# written to the html output directory.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
CHM_FILE =
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can
|
|
kusano |
7d535a |
# be used to specify the location (absolute path including file name) of
|
|
kusano |
7d535a |
# the HTML help compiler (hhc.exe). If non-empty doxygen will try to run
|
|
kusano |
7d535a |
# the HTML help compiler on the generated index.hhp.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
HHC_LOCATION =
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag
|
|
kusano |
7d535a |
# controls if a separate .chi index file is generated (YES) or that
|
|
kusano |
7d535a |
# it should be included in the master .chm file (NO).
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
GENERATE_CHI = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag
|
|
kusano |
7d535a |
# controls whether a binary table of contents is generated (YES) or a
|
|
kusano |
7d535a |
# normal table of contents (NO) in the .chm file.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
BINARY_TOC = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The TOC_EXPAND flag can be set to YES to add extra items for group members
|
|
kusano |
7d535a |
# to the contents of the HTML help documentation and to the tree view.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
TOC_EXPAND = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The DISABLE_INDEX tag can be used to turn on/off the condensed index at
|
|
kusano |
7d535a |
# top of each HTML page. The value NO (the default) enables the index and
|
|
kusano |
7d535a |
# the value YES disables it.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
DISABLE_INDEX = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# This tag can be used to set the number of enum values (range [1..20])
|
|
kusano |
7d535a |
# that doxygen will group on one line in the generated HTML documentation.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
ENUM_VALUES_PER_LINE = 4
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the GENERATE_TREEVIEW tag is set to YES, a side panel will be
|
|
kusano |
7d535a |
# generated containing a tree-like index structure (just like the one that
|
|
kusano |
7d535a |
# is generated for HTML Help). For this to work a browser that supports
|
|
kusano |
7d535a |
# JavaScript, DHTML, CSS and frames is required (for instance Mozilla 1.0+,
|
|
kusano |
7d535a |
# Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are
|
|
kusano |
7d535a |
# probably better off using the HTML help feature.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
GENERATE_TREEVIEW = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be
|
|
kusano |
7d535a |
# used to set the initial width (in pixels) of the frame in which the tree
|
|
kusano |
7d535a |
# is shown.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
TREEVIEW_WIDTH = 250
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
#---------------------------------------------------------------------------
|
|
kusano |
7d535a |
# configuration options related to the LaTeX output
|
|
kusano |
7d535a |
#---------------------------------------------------------------------------
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will
|
|
kusano |
7d535a |
# generate Latex output.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
GENERATE_LATEX = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put.
|
|
kusano |
7d535a |
# If a relative path is entered the value of OUTPUT_DIRECTORY will be
|
|
kusano |
7d535a |
# put in front of it. If left blank `latex' will be used as the default path.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
LATEX_OUTPUT = latex
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be
|
|
kusano |
7d535a |
# invoked. If left blank `latex' will be used as the default command name.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
LATEX_CMD_NAME = latex
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to
|
|
kusano |
7d535a |
# generate index for LaTeX. If left blank `makeindex' will be used as the
|
|
kusano |
7d535a |
# default command name.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
MAKEINDEX_CMD_NAME = makeindex
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact
|
|
kusano |
7d535a |
# LaTeX documents. This may be useful for small projects and may help to
|
|
kusano |
7d535a |
# save some trees in general.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
COMPACT_LATEX = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The PAPER_TYPE tag can be used to set the paper type that is used
|
|
kusano |
7d535a |
# by the printer. Possible values are: a4, a4wide, letter, legal and
|
|
kusano |
7d535a |
# executive. If left blank a4wide will be used.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
PAPER_TYPE = a4wide
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX
|
|
kusano |
7d535a |
# packages that should be included in the LaTeX output.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
EXTRA_PACKAGES =
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The LATEX_HEADER tag can be used to specify a personal LaTeX header for
|
|
kusano |
7d535a |
# the generated latex document. The header should contain everything until
|
|
kusano |
7d535a |
# the first chapter. If it is left blank doxygen will generate a
|
|
kusano |
7d535a |
# standard header. Notice: only use this tag if you know what you are doing!
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
LATEX_HEADER =
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated
|
|
kusano |
7d535a |
# is prepared for conversion to pdf (using ps2pdf). The pdf file will
|
|
kusano |
7d535a |
# contain links (just like the HTML output) instead of page references
|
|
kusano |
7d535a |
# This makes the output suitable for online browsing using a pdf viewer.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
PDF_HYPERLINKS = YES
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of
|
|
kusano |
7d535a |
# plain latex in the generated Makefile. Set this option to YES to get a
|
|
kusano |
7d535a |
# higher quality PDF documentation.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
USE_PDFLATEX = YES
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode.
|
|
kusano |
7d535a |
# command to the generated LaTeX files. This will instruct LaTeX to keep
|
|
kusano |
7d535a |
# running if errors occur, instead of asking the user for help.
|
|
kusano |
7d535a |
# This option is also used when generating formulas in HTML.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
LATEX_BATCHMODE = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If LATEX_HIDE_INDICES is set to YES then doxygen will not
|
|
kusano |
7d535a |
# include the index chapters (such as File Index, Compound Index, etc.)
|
|
kusano |
7d535a |
# in the output.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
LATEX_HIDE_INDICES = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
#---------------------------------------------------------------------------
|
|
kusano |
7d535a |
# configuration options related to the RTF output
|
|
kusano |
7d535a |
#---------------------------------------------------------------------------
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output
|
|
kusano |
7d535a |
# The RTF output is optimized for Word 97 and may not look very pretty with
|
|
kusano |
7d535a |
# other RTF readers or editors.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
GENERATE_RTF = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The RTF_OUTPUT tag is used to specify where the RTF docs will be put.
|
|
kusano |
7d535a |
# If a relative path is entered the value of OUTPUT_DIRECTORY will be
|
|
kusano |
7d535a |
# put in front of it. If left blank `rtf' will be used as the default path.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
RTF_OUTPUT = rtf
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the COMPACT_RTF tag is set to YES Doxygen generates more compact
|
|
kusano |
7d535a |
# RTF documents. This may be useful for small projects and may help to
|
|
kusano |
7d535a |
# save some trees in general.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
COMPACT_RTF = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated
|
|
kusano |
7d535a |
# will contain hyperlink fields. The RTF file will
|
|
kusano |
7d535a |
# contain links (just like the HTML output) instead of page references.
|
|
kusano |
7d535a |
# This makes the output suitable for online browsing using WORD or other
|
|
kusano |
7d535a |
# programs which support those fields.
|
|
kusano |
7d535a |
# Note: wordpad (write) and others do not support links.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
RTF_HYPERLINKS = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# Load stylesheet definitions from file. Syntax is similar to doxygen's
|
|
kusano |
7d535a |
# config file, i.e. a series of assignments. You only have to provide
|
|
kusano |
7d535a |
# replacements, missing definitions are set to their default value.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
RTF_STYLESHEET_FILE =
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# Set optional variables used in the generation of an rtf document.
|
|
kusano |
7d535a |
# Syntax is similar to doxygen's config file.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
RTF_EXTENSIONS_FILE =
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
#---------------------------------------------------------------------------
|
|
kusano |
7d535a |
# configuration options related to the man page output
|
|
kusano |
7d535a |
#---------------------------------------------------------------------------
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the GENERATE_MAN tag is set to YES (the default) Doxygen will
|
|
kusano |
7d535a |
# generate man pages
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
GENERATE_MAN = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The MAN_OUTPUT tag is used to specify where the man pages will be put.
|
|
kusano |
7d535a |
# If a relative path is entered the value of OUTPUT_DIRECTORY will be
|
|
kusano |
7d535a |
# put in front of it. If left blank `man' will be used as the default path.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
MAN_OUTPUT = man
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The MAN_EXTENSION tag determines the extension that is added to
|
|
kusano |
7d535a |
# the generated man pages (default is the subroutine's section .3)
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
MAN_EXTENSION = .3
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the MAN_LINKS tag is set to YES and Doxygen generates man output,
|
|
kusano |
7d535a |
# then it will generate one additional man file for each entity
|
|
kusano |
7d535a |
# documented in the real man page(s). These additional files
|
|
kusano |
7d535a |
# only source the real man page, but without them the man command
|
|
kusano |
7d535a |
# would be unable to find the correct page. The default is NO.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
MAN_LINKS = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
#---------------------------------------------------------------------------
|
|
kusano |
7d535a |
# configuration options related to the XML output
|
|
kusano |
7d535a |
#---------------------------------------------------------------------------
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the GENERATE_XML tag is set to YES Doxygen will
|
|
kusano |
7d535a |
# generate an XML file that captures the structure of
|
|
kusano |
7d535a |
# the code including all documentation.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
GENERATE_XML = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The XML_OUTPUT tag is used to specify where the XML pages will be put.
|
|
kusano |
7d535a |
# If a relative path is entered the value of OUTPUT_DIRECTORY will be
|
|
kusano |
7d535a |
# put in front of it. If left blank `xml' will be used as the default path.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
XML_OUTPUT = xml
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The XML_SCHEMA tag can be used to specify an XML schema,
|
|
kusano |
7d535a |
# which can be used by a validating XML parser to check the
|
|
kusano |
7d535a |
# syntax of the XML files.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
XML_SCHEMA =
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The XML_DTD tag can be used to specify an XML DTD,
|
|
kusano |
7d535a |
# which can be used by a validating XML parser to check the
|
|
kusano |
7d535a |
# syntax of the XML files.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
XML_DTD =
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the XML_PROGRAMLISTING tag is set to YES Doxygen will
|
|
kusano |
7d535a |
# dump the program listings (including syntax highlighting
|
|
kusano |
7d535a |
# and cross-referencing information) to the XML output. Note that
|
|
kusano |
7d535a |
# enabling this will significantly increase the size of the XML output.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
XML_PROGRAMLISTING = YES
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
#---------------------------------------------------------------------------
|
|
kusano |
7d535a |
# configuration options for the AutoGen Definitions output
|
|
kusano |
7d535a |
#---------------------------------------------------------------------------
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will
|
|
kusano |
7d535a |
# generate an AutoGen Definitions (see autogen.sf.net) file
|
|
kusano |
7d535a |
# that captures the structure of the code including all
|
|
kusano |
7d535a |
# documentation. Note that this feature is still experimental
|
|
kusano |
7d535a |
# and incomplete at the moment.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
GENERATE_AUTOGEN_DEF = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
#---------------------------------------------------------------------------
|
|
kusano |
7d535a |
# configuration options related to the Perl module output
|
|
kusano |
7d535a |
#---------------------------------------------------------------------------
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the GENERATE_PERLMOD tag is set to YES Doxygen will
|
|
kusano |
7d535a |
# generate a Perl module file that captures the structure of
|
|
kusano |
7d535a |
# the code including all documentation. Note that this
|
|
kusano |
7d535a |
# feature is still experimental and incomplete at the
|
|
kusano |
7d535a |
# moment.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
GENERATE_PERLMOD = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the PERLMOD_LATEX tag is set to YES Doxygen will generate
|
|
kusano |
7d535a |
# the necessary Makefile rules, Perl scripts and LaTeX code to be able
|
|
kusano |
7d535a |
# to generate PDF and DVI output from the Perl module output.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
PERLMOD_LATEX = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the PERLMOD_PRETTY tag is set to YES the Perl module output will be
|
|
kusano |
7d535a |
# nicely formatted so it can be parsed by a human reader. This is useful
|
|
kusano |
7d535a |
# if you want to understand what is going on. On the other hand, if this
|
|
kusano |
7d535a |
# tag is set to NO the size of the Perl module output will be much smaller
|
|
kusano |
7d535a |
# and Perl will parse it just the same.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
PERLMOD_PRETTY = YES
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The names of the make variables in the generated doxyrules.make file
|
|
kusano |
7d535a |
# are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX.
|
|
kusano |
7d535a |
# This is useful so different doxyrules.make files included by the same
|
|
kusano |
7d535a |
# Makefile don't overwrite each other's variables.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
PERLMOD_MAKEVAR_PREFIX =
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
#---------------------------------------------------------------------------
|
|
kusano |
7d535a |
# Configuration options related to the preprocessor
|
|
kusano |
7d535a |
#---------------------------------------------------------------------------
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will
|
|
kusano |
7d535a |
# evaluate all C-preprocessor directives found in the sources and include
|
|
kusano |
7d535a |
# files.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
ENABLE_PREPROCESSING = YES
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro
|
|
kusano |
7d535a |
# names in the source code. If set to NO (the default) only conditional
|
|
kusano |
7d535a |
# compilation will be performed. Macro expansion can be done in a controlled
|
|
kusano |
7d535a |
# way by setting EXPAND_ONLY_PREDEF to YES.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
MACRO_EXPANSION = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES
|
|
kusano |
7d535a |
# then the macro expansion is limited to the macros specified with the
|
|
kusano |
7d535a |
# PREDEFINED and EXPAND_AS_DEFINED tags.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
EXPAND_ONLY_PREDEF = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files
|
|
kusano |
7d535a |
# in the INCLUDE_PATH (see below) will be search if a #include is found.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
SEARCH_INCLUDES = YES
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The INCLUDE_PATH tag can be used to specify one or more directories that
|
|
kusano |
7d535a |
# contain include files that are not input files but should be processed by
|
|
kusano |
7d535a |
# the preprocessor.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
INCLUDE_PATH =
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard
|
|
kusano |
7d535a |
# patterns (like *.h and *.hpp) to filter out the header-files in the
|
|
kusano |
7d535a |
# directories. If left blank, the patterns specified with FILE_PATTERNS will
|
|
kusano |
7d535a |
# be used.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
INCLUDE_FILE_PATTERNS =
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The PREDEFINED tag can be used to specify one or more macro names that
|
|
kusano |
7d535a |
# are defined before the preprocessor is started (similar to the -D option of
|
|
kusano |
7d535a |
# gcc). The argument of the tag is a list of macros of the form: name
|
|
kusano |
7d535a |
# or name=definition (no spaces). If the definition and the = are
|
|
kusano |
7d535a |
# omitted =1 is assumed. To prevent a macro definition from being
|
|
kusano |
7d535a |
# undefined via #undef or recursively expanded use the := operator
|
|
kusano |
7d535a |
# instead of the = operator.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
PREDEFINED =
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then
|
|
kusano |
7d535a |
# this tag can be used to specify a list of macro names that should be expanded.
|
|
kusano |
7d535a |
# The macro definition that is found in the sources will be used.
|
|
kusano |
7d535a |
# Use the PREDEFINED tag if you want to use a different macro definition.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
EXPAND_AS_DEFINED =
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then
|
|
kusano |
7d535a |
# doxygen's preprocessor will remove all function-like macros that are alone
|
|
kusano |
7d535a |
# on a line, have an all uppercase name, and do not end with a semicolon. Such
|
|
kusano |
7d535a |
# function macros are typically used for boiler-plate code, and will confuse
|
|
kusano |
7d535a |
# the parser if not removed.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
SKIP_FUNCTION_MACROS = YES
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
#---------------------------------------------------------------------------
|
|
kusano |
7d535a |
# Configuration::additions related to external references
|
|
kusano |
7d535a |
#---------------------------------------------------------------------------
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The TAGFILES option can be used to specify one or more tagfiles.
|
|
kusano |
7d535a |
# Optionally an initial location of the external documentation
|
|
kusano |
7d535a |
# can be added for each tagfile. The format of a tag file without
|
|
kusano |
7d535a |
# this location is as follows:
|
|
kusano |
7d535a |
# TAGFILES = file1 file2 ...
|
|
kusano |
7d535a |
# Adding location for the tag files is done as follows:
|
|
kusano |
7d535a |
# TAGFILES = file1=loc1 "file2 = loc2" ...
|
|
kusano |
7d535a |
# where "loc1" and "loc2" can be relative or absolute paths or
|
|
kusano |
7d535a |
# URLs. If a location is present for each tag, the installdox tool
|
|
kusano |
7d535a |
# does not have to be run to correct the links.
|
|
kusano |
7d535a |
# Note that each tag file must have a unique name
|
|
kusano |
7d535a |
# (where the name does NOT include the path)
|
|
kusano |
7d535a |
# If a tag file is not located in the directory in which doxygen
|
|
kusano |
7d535a |
# is run, you must also specify the path to the tagfile here.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
TAGFILES =
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# When a file name is specified after GENERATE_TAGFILE, doxygen will create
|
|
kusano |
7d535a |
# a tag file that is based on the input files it reads.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
GENERATE_TAGFILE =
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the ALLEXTERNALS tag is set to YES all external classes will be listed
|
|
kusano |
7d535a |
# in the class index. If set to NO only the inherited external classes
|
|
kusano |
7d535a |
# will be listed.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
ALLEXTERNALS = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed
|
|
kusano |
7d535a |
# in the modules index. If set to NO, only the current project's groups will
|
|
kusano |
7d535a |
# be listed.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
EXTERNAL_GROUPS = YES
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The PERL_PATH should be the absolute path and name of the perl script
|
|
kusano |
7d535a |
# interpreter (i.e. the result of `which perl').
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
PERL_PATH = /usr/bin/perl
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
#---------------------------------------------------------------------------
|
|
kusano |
7d535a |
# Configuration options related to the dot tool
|
|
kusano |
7d535a |
#---------------------------------------------------------------------------
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will
|
|
kusano |
7d535a |
# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base
|
|
kusano |
7d535a |
# or super classes. Setting the tag to NO turns the diagrams off. Note that
|
|
kusano |
7d535a |
# this option is superseded by the HAVE_DOT option below. This is only a
|
|
kusano |
7d535a |
# fallback. It is recommended to install and use dot, since it yields more
|
|
kusano |
7d535a |
# powerful graphs.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
CLASS_DIAGRAMS = YES
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# You can define message sequence charts within doxygen comments using the \msc
|
|
kusano |
7d535a |
# command. Doxygen will then run the mscgen tool (see
|
|
kusano |
7d535a |
# http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the
|
|
kusano |
7d535a |
# documentation. The MSCGEN_PATH tag allows you to specify the directory where
|
|
kusano |
7d535a |
# the mscgen tool resides. If left empty the tool is assumed to be found in the
|
|
kusano |
7d535a |
# default search path.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
MSCGEN_PATH =
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If set to YES, the inheritance and collaboration graphs will hide
|
|
kusano |
7d535a |
# inheritance and usage relations if the target is undocumented
|
|
kusano |
7d535a |
# or is not a class.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
HIDE_UNDOC_RELATIONS = YES
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is
|
|
kusano |
7d535a |
# available from the path. This tool is part of Graphviz, a graph visualization
|
|
kusano |
7d535a |
# toolkit from AT&T and Lucent Bell Labs. The other options in this section
|
|
kusano |
7d535a |
# have no effect if this option is set to NO (the default)
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
HAVE_DOT = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen
|
|
kusano |
7d535a |
# will generate a graph for each documented class showing the direct and
|
|
kusano |
7d535a |
# indirect inheritance relations. Setting this tag to YES will force the
|
|
kusano |
7d535a |
# the CLASS_DIAGRAMS tag to NO.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
CLASS_GRAPH = YES
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen
|
|
kusano |
7d535a |
# will generate a graph for each documented class showing the direct and
|
|
kusano |
7d535a |
# indirect implementation dependencies (inheritance, containment, and
|
|
kusano |
7d535a |
# class references variables) of the class with other documented classes.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
COLLABORATION_GRAPH = YES
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen
|
|
kusano |
7d535a |
# will generate a graph for groups, showing the direct groups dependencies
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
GROUP_GRAPHS = YES
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the UML_LOOK tag is set to YES doxygen will generate inheritance and
|
|
kusano |
7d535a |
# collaboration diagrams in a style similar to the OMG's Unified Modeling
|
|
kusano |
7d535a |
# Language.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
UML_LOOK = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If set to YES, the inheritance and collaboration graphs will show the
|
|
kusano |
7d535a |
# relations between templates and their instances.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
TEMPLATE_RELATIONS = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT
|
|
kusano |
7d535a |
# tags are set to YES then doxygen will generate a graph for each documented
|
|
kusano |
7d535a |
# file showing the direct and indirect include dependencies of the file with
|
|
kusano |
7d535a |
# other documented files.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
INCLUDE_GRAPH = YES
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and
|
|
kusano |
7d535a |
# HAVE_DOT tags are set to YES then doxygen will generate a graph for each
|
|
kusano |
7d535a |
# documented header file showing the documented files that directly or
|
|
kusano |
7d535a |
# indirectly include this file.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
INCLUDED_BY_GRAPH = YES
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the CALL_GRAPH and HAVE_DOT options are set to YES then
|
|
kusano |
7d535a |
# doxygen will generate a call dependency graph for every global function
|
|
kusano |
7d535a |
# or class method. Note that enabling this option will significantly increase
|
|
kusano |
7d535a |
# the time of a run. So in most cases it will be better to enable call graphs
|
|
kusano |
7d535a |
# for selected functions only using the \callgraph command.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
CALL_GRAPH = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the CALLER_GRAPH and HAVE_DOT tags are set to YES then
|
|
kusano |
7d535a |
# doxygen will generate a caller dependency graph for every global function
|
|
kusano |
7d535a |
# or class method. Note that enabling this option will significantly increase
|
|
kusano |
7d535a |
# the time of a run. So in most cases it will be better to enable caller
|
|
kusano |
7d535a |
# graphs for selected functions only using the \callergraph command.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
CALLER_GRAPH = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen
|
|
kusano |
7d535a |
# will graphical hierarchy of all classes instead of a textual one.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
GRAPHICAL_HIERARCHY = YES
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES
|
|
kusano |
7d535a |
# then doxygen will show the dependencies a directory has on other directories
|
|
kusano |
7d535a |
# in a graphical way. The dependency relations are determined by the #include
|
|
kusano |
7d535a |
# relations between the files in the directories.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
DIRECTORY_GRAPH = YES
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images
|
|
kusano |
7d535a |
# generated by dot. Possible values are png, jpg, or gif
|
|
kusano |
7d535a |
# If left blank png will be used.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
DOT_IMAGE_FORMAT = png
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The tag DOT_PATH can be used to specify the path where the dot tool can be
|
|
kusano |
7d535a |
# found. If left blank, it is assumed the dot tool can be found in the path.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
DOT_PATH =
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The DOTFILE_DIRS tag can be used to specify one or more directories that
|
|
kusano |
7d535a |
# contain dot files that are included in the documentation (see the
|
|
kusano |
7d535a |
# \dotfile command).
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
DOTFILE_DIRS =
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The MAX_DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of
|
|
kusano |
7d535a |
# nodes that will be shown in the graph. If the number of nodes in a graph
|
|
kusano |
7d535a |
# becomes larger than this value, doxygen will truncate the graph, which is
|
|
kusano |
7d535a |
# visualized by representing a node as a red box. Note that doxygen if the
|
|
kusano |
7d535a |
# number of direct children of the root node in a graph is already larger than
|
|
kusano |
7d535a |
# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note
|
|
kusano |
7d535a |
# that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
DOT_GRAPH_MAX_NODES = 50
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the
|
|
kusano |
7d535a |
# graphs generated by dot. A depth value of 3 means that only nodes reachable
|
|
kusano |
7d535a |
# from the root by following a path via at most 3 edges will be shown. Nodes
|
|
kusano |
7d535a |
# that lay further from the root node will be omitted. Note that setting this
|
|
kusano |
7d535a |
# option to 1 or 2 may greatly reduce the computation time needed for large
|
|
kusano |
7d535a |
# code bases. Also note that the size of a graph can be further restricted by
|
|
kusano |
7d535a |
# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
MAX_DOT_GRAPH_DEPTH = 0
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent
|
|
kusano |
7d535a |
# background. This is enabled by default, which results in a transparent
|
|
kusano |
7d535a |
# background. Warning: Depending on the platform used, enabling this option
|
|
kusano |
7d535a |
# may lead to badly anti-aliased labels on the edges of a graph (i.e. they
|
|
kusano |
7d535a |
# become hard to read).
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
DOT_TRANSPARENT = YES
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output
|
|
kusano |
7d535a |
# files in one run (i.e. multiple -o and -T options on the command line). This
|
|
kusano |
7d535a |
# makes dot run faster, but since only newer versions of dot (>1.8.10)
|
|
kusano |
7d535a |
# support this, this feature is disabled by default.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
DOT_MULTI_TARGETS = NO
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will
|
|
kusano |
7d535a |
# generate a legend page explaining the meaning of the various boxes and
|
|
kusano |
7d535a |
# arrows in the dot generated graphs.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
GENERATE_LEGEND = YES
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will
|
|
kusano |
7d535a |
# remove the intermediate dot files that are used to generate
|
|
kusano |
7d535a |
# the various graphs.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
DOT_CLEANUP = YES
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
#---------------------------------------------------------------------------
|
|
kusano |
7d535a |
# Configuration::additions related to the search engine
|
|
kusano |
7d535a |
#---------------------------------------------------------------------------
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
# The SEARCHENGINE tag specifies whether or not a search engine should be
|
|
kusano |
7d535a |
# used. If set to NO the values of all tags below this one will be ignored.
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
SEARCHENGINE = NO
|