Changeset 1063:d53a12d49262 in lemon-0.x for doc/Doxyfile
- Timestamp:
- 01/09/05 21:06:57 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1459
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/Doxyfile
r1030 r1063 1 # Doxyfile 1. 3.91 # Doxyfile 1.4.0 2 2 3 3 # This file describes the settings to be used by the documentation system … … 36 36 # 4096 sub-directories (in 2 levels) under the output directory of each output 37 37 # format and will distribute the generated files over these directories. 38 # Enabling this option can be useful when feeding doxygen a huge amount of source39 # files, where putting all generated files in the same directory would otherwise40 # cause performance problems for the file system.38 # Enabling this option can be useful when feeding doxygen a huge amount of 39 # source files, where putting all generated files in the same directory would 40 # otherwise cause performance problems for the file system. 41 41 42 42 CREATE_SUBDIRS = NO … … 81 81 # that is used to form the text in various listings. Each string 82 82 # in this list, if found as the leading text of the brief description, will be 83 # stripped from the text and the result after processing the whole list, is used 84 # as the annotated text. Otherwise, the brief description is used as-is. If left 85 # blank, the following values are used ("$name" is automatically replaced with the 86 # name of the entity): "The $name class" "The $name widget" "The $name file" 87 # "is" "provides" "specifies" "contains" "represents" "a" "an" "the" 83 # stripped from the text and the result after processing the whole list, is 84 # used as the annotated text. Otherwise, the brief description is used as-is. 85 # If left blank, the following values are used ("$name" is automatically 86 # replaced with the name of the entity): "The $name class" "The $name widget" 87 # "The $name file" "is" "provides" "specifies" "contains" 88 # "represents" "a" "an" "the" 88 89 89 90 ABBREVIATE_BRIEF = … … 95 96 ALWAYS_DETAILED_SEC = NO 96 97 97 # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all inherited98 # members of a class in the documentation of that class as if those members were99 # ordinary class members. Constructors, destructors and assignment operators of100 # the base classes will not be shown.98 # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all 99 # inherited members of a class in the documentation of that class as if those 100 # members were ordinary class members. Constructors, destructors and assignment 101 # operators of the base classes will not be shown. 101 102 102 103 INLINE_INHERITED_MEMB = NO … … 182 183 ALIASES = 183 184 184 # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources185 # only. Doxygen will then generate output that is more tailored for C.185 # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C 186 # sources only. Doxygen will then generate output that is more tailored for C. 186 187 # For instance, some of the names that are used will be different. The list 187 188 # of all members will be omitted, etc. … … 374 375 SHOW_DIRECTORIES = YES 375 376 377 # The FILE_VERSION_FILTER tag can be used to specify a program or script that 378 # doxygen should invoke to get the current version for each file (typically from the 379 # version control system). Doxygen will invoke the program by executing (via 380 # popen()) the command <command> <input-file>, where <command> is the value of 381 # the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file 382 # provided by doxygen. Whatever the progam writes to standard output 383 # is used as the file version. See the manual for examples. 384 385 FILE_VERSION_FILTER = 386 376 387 #--------------------------------------------------------------------------- 377 388 # configuration options related to warning and progress messages … … 402 413 WARN_IF_DOC_ERROR = YES 403 414 415 # This WARN_NO_PARAMDOC option can be abled to get warnings for 416 # functions that are documented, but have no documentation for their parameters 417 # or return value. If set to NO (the default) doxygen will only warn about 418 # wrong or incomplete parameter documentation, but not about the absence of 419 # documentation. 420 421 WARN_NO_PARAMDOC = NO 422 404 423 # The WARN_FORMAT tag determines the format of the warning messages that 405 424 # doxygen can produce. The string should contain the $file, $line, and $text 406 425 # tags, which will be replaced by the file and line number from which the 407 # warning originated and the warning text. 426 # warning originated and the warning text. Optionally the format may contain 427 # $version, which will be replaced by the version of the file (if it could 428 # be obtained via FILE_VERSION_FILTER) 408 429 409 430 WARN_FORMAT = "$file:$line: $text" … … 426 447 INPUT = mainpage.dox \ 427 448 graphs.dox \ 428 undir_graphs.dox \ 449 undir_graphs.dox \ 429 450 named-param.dox \ 430 451 maps.dox \ … … 432 453 groups.dox \ 433 454 namespaces.dox \ 434 455 license.dox \ 435 456 developpers_interface.dox \ 436 457 ../src/lemon \ … … 442 463 # and *.h) to filter out the source-files in the directories. If left 443 464 # blank the following patterns are tested: 444 # *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx *.hpp445 # *.h ++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm465 # *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx 466 # *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm 446 467 447 468 FILE_PATTERNS = … … 459 480 EXCLUDE = 460 481 461 # The EXCLUDE_SYMLINKS tag can be used select whether or not files or directories 462 # that are symbolic links (a Unix filesystem feature) are excluded from the input. 482 # The EXCLUDE_SYMLINKS tag can be used select whether or not files or 483 # directories that are symbolic links (a Unix filesystem feature) are excluded 484 # from the input. 463 485 464 486 EXCLUDE_SYMLINKS = NO … … 474 496 # the \include command). 475 497 476 EXAMPLE_PATH = ../src/demo ../LICENSE . 498 EXAMPLE_PATH = ../src/demo \ 499 ../LICENSE \ 500 . 477 501 478 502 # If the value of the EXAMPLE_PATH tag contains directories, you can use the … … 983 1007 # doxygen's preprocessor will remove all function-like macros that are alone 984 1008 # on a line, have an all uppercase name, and do not end with a semicolon. Such 985 # function macros are typically used for boiler-plate code, and will confuse the986 # parser if not removed.1009 # function macros are typically used for boiler-plate code, and will confuse 1010 # the parser if not removed. 987 1011 988 1012 SKIP_FUNCTION_MACROS = YES … … 1036 1060 1037 1061 # If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will 1038 # generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base or 1039 # super classes. Setting the tag to NO turns the diagrams off. Note that this 1040 # option is superseded by the HAVE_DOT option below. This is only a fallback. It is 1041 # recommended to install and use dot, since it yields more powerful graphs. 1062 # generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base 1063 # or super classes. Setting the tag to NO turns the diagrams off. Note that 1064 # this option is superseded by the HAVE_DOT option below. This is only a 1065 # fallback. It is recommended to install and use dot, since it yields more 1066 # powerful graphs. 1042 1067 1043 1068 CLASS_DIAGRAMS = YES … … 1069 1094 1070 1095 COLLABORATION_GRAPH = YES 1096 1097 # If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen 1098 # will generate a graph for groups, showing the direct groups dependencies 1099 1100 GROUP_GRAPHS = YES 1071 1101 1072 1102 # If the UML_LOOK tag is set to YES doxygen will generate inheritance and … … 1108 1138 GRAPHICAL_HIERARCHY = YES 1109 1139 1140 # If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES 1141 # then doxygen will show the dependencies a directory has on other directories 1142 # in a graphical way. The dependency relations are determined by the #include 1143 # relations between the files in the directories. 1144 1145 DIRECTORY_GRAPH = YES 1146 1110 1147 # The DOT_IMAGE_FORMAT tag can be used to set the image format of the images 1111 1148 # generated by dot. Possible values are png, jpg, or gif … … 1143 1180 # The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the 1144 1181 # graphs generated by dot. A depth value of 3 means that only nodes reachable 1145 # from the root by following a path via at most 3 edges will be shown. Nodes that 1146 # lay further from the root node will be omitted. Note that setting this option to 1147 # 1 or 2 may greatly reduce the computation time needed for large code bases. Also 1148 # note that a graph may be further truncated if the graph's image dimensions are 1149 # not sufficient to fit the graph (see MAX_DOT_GRAPH_WIDTH and MAX_DOT_GRAPH_HEIGHT). 1150 # If 0 is used for the depth value (the default), the graph is not depth-constrained. 1182 # from the root by following a path via at most 3 edges will be shown. Nodes 1183 # that lay further from the root node will be omitted. Note that setting this 1184 # option to 1 or 2 may greatly reduce the computation time needed for large 1185 # code bases. Also note that a graph may be further truncated if the graph's 1186 # image dimensions are not sufficient to fit the graph (see MAX_DOT_GRAPH_WIDTH 1187 # and MAX_DOT_GRAPH_HEIGHT). If 0 is used for the depth value (the default), 1188 # the graph is not depth-constrained. 1151 1189 1152 1190 MAX_DOT_GRAPH_DEPTH = 0 1191 1192 # Set the DOT_TRANSPARENT tag to YES to generate images with a transparent 1193 # background. This is disabled by default, which results in a white background. 1194 # Warning: Depending on the platform used, enabling this option may lead to 1195 # badly anti-aliased labels on the edges of a graph (i.e. they become hard to 1196 # read). 1197 1198 DOT_TRANSPARENT = NO 1199 1200 # Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output 1201 # files in one run (i.e. multiple -o and -T options on the command line). This 1202 # makes dot run faster, but since only newer versions of dot (>1.8.10) 1203 # support this, this feature is disabled by default. 1204 1205 DOT_MULTI_TARGETS = NO 1153 1206 1154 1207 # If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will
Note: See TracChangeset
for help on using the changeset viewer.