Changeset 939:1559584ca634 in lemon-0.x for doc/Doxyfile
- Timestamp:
- 10/07/04 09:39:42 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1279
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/Doxyfile
r922 r939 1 # Doxyfile 1.3. 61 # Doxyfile 1.3.9 2 2 3 3 # This file describes the settings to be used by the documentation system … … 24 24 # if some version control system is used. 25 25 26 PROJECT_NUMBER = 0. 226 PROJECT_NUMBER = 0.3 27 27 28 28 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) … … 33 33 OUTPUT_DIRECTORY = 34 34 35 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 36 # 4096 sub-directories (in 2 levels) under the output directory of each output 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 source 39 # files, where putting all generated files in the same directory would otherwise 40 # cause performance problems for the file system. 41 42 CREATE_SUBDIRS = NO 43 35 44 # The OUTPUT_LANGUAGE tag is used to specify the language in which all 36 45 # documentation generated by doxygen is written. Doxygen will use this 37 46 # information to generate all constant output in the proper language. 38 47 # The default language is English, other supported languages are: 39 # Brazilian, Catalan, Chinese, Chinese-Traditional, Croatian, Czech, Danish, Dutch, 40 # Finnish, French, German, Greek, Hungarian, Italian, Japanese, Japanese-en 41 # (Japanese with English messages), Korean, Korean-en, Norwegian, Polish, Portuguese, 42 # Romanian, Russian, Serbian, Slovak, Slovene, Spanish, Swedish, and Ukrainian. 48 # Brazilian, Catalan, Chinese, Chinese-Traditional, Croatian, Czech, Danish, 49 # Dutch, Finnish, French, German, Greek, Hungarian, Italian, Japanese, 50 # Japanese-en (Japanese with English messages), Korean, Korean-en, Norwegian, 51 # Polish, Portuguese, Romanian, Russian, Serbian, Slovak, Slovene, Spanish, 52 # Swedish, and Ukrainian. 43 53 44 54 OUTPUT_LANGUAGE = English … … 96 106 # to NO the shortest path that makes the file name unique will be used. 97 107 98 FULL_PATH_NAMES = NO108 FULL_PATH_NAMES = YES 99 109 100 110 # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag 101 111 # can be used to strip a user-defined part of the path. Stripping is 102 112 # only done if one of the specified strings matches the left-hand part of 103 # the path. It is allowed to use relative paths in the argumentlist.113 # the path. The tag can be used to show relative paths in the file list. 104 114 # If left blank the directory from which doxygen is run is used as the 105 115 # path to strip. 106 116 107 STRIP_FROM_PATH = 117 STRIP_FROM_PATH = ../src 118 119 # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of 120 # the path mentioned in the documentation of a class, which tells 121 # the reader which header file to include in order to use a class. 122 # If left blank only the name of the header file containing the class 123 # definition is used. Otherwise one should specify the include paths that 124 # are normally passed to the compiler using the -I flag. 125 126 STRIP_FROM_INC_PATH = ../src 108 127 109 128 # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter … … 212 231 EXTRACT_LOCAL_CLASSES = YES 213 232 233 # This flag is only useful for Objective-C code. When set to YES local 234 # methods, which are defined in the implementation section but not in 235 # the interface are included in the documentation. 236 # If set to NO (the default) only methods in the interface are included. 237 238 EXTRACT_LOCAL_METHODS = NO 239 214 240 # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all 215 241 # undocumented members of documented classes, files or namespaces. … … 252 278 # allowed. This is useful if you have classes or files whose names only differ 253 279 # in case and if your file system supports case sensitive file names. Windows 254 # users are advised to set this option to NO.280 # and Mac users are advised to set this option to NO. 255 281 256 282 CASE_SENSE_NAMES = YES … … 342 368 SHOW_USED_FILES = YES 343 369 370 # If the sources in your project are distributed over multiple directories 371 # then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy 372 # in the documentation. 373 374 SHOW_DIRECTORIES = YES 375 344 376 #--------------------------------------------------------------------------- 345 377 # configuration options related to warning and progress messages … … 393 425 394 426 INPUT = mainpage.dox \ 395 427 graphs.dox \ 396 428 maps.dox \ 397 429 coding_style.dox \ … … 407 439 # blank the following patterns are tested: 408 440 # *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx *.hpp 409 # *.h++ *.idl *.odl *.cs *.php *.php3 *.inc 441 # *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm 410 442 411 443 FILE_PATTERNS = … … 465 497 # is the value of the INPUT_FILTER tag, and <input-file> is the name of an 466 498 # input file. Doxygen will then use the output that the filter program writes 467 # to standard output. 499 # to standard output. If FILTER_PATTERNS is specified, this tag will be 500 # ignored. 468 501 469 502 INPUT_FILTER = 503 504 # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern 505 # basis. Doxygen will compare the file name with each pattern and apply the 506 # filter if there is a match. The filters are a list of the form: 507 # pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further 508 # info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER 509 # is applied to all files. 510 511 FILTER_PATTERNS = 470 512 471 513 # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using … … 921 963 # gcc). The argument of the tag is a list of macros of the form: name 922 964 # or name=definition (no spaces). If the definition and the = are 923 # omitted =1 is assumed. 965 # omitted =1 is assumed. To prevent a macro definition from being 966 # undefined via #undef or recursively expanded use the := operator 967 # instead of the = operator. 924 968 925 969 PREDEFINED = DOXYGEN
Note: See TracChangeset
for help on using the changeset viewer.