comparison xml/Doxyfile @ 182:b65e8d0a088a

more cleanup on external names in the shared object file
author Carl Byington <carl@five-ten-sg.com>
date Mon, 13 Apr 2009 11:39:33 -0700
parents 265c7a65b75b
children 774b2e77eb50
comparison
equal deleted inserted replaced
181:3b04745ff76d 182:b65e8d0a088a
15 #--------------------------------------------------------------------------- 15 #---------------------------------------------------------------------------
16 16
17 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded 17 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded
18 # by quotes) that should identify the project. 18 # by quotes) that should identify the project.
19 19
20 PROJECT_NAME = 'LibPst' 20 PROJECT_NAME = 'libpst'
21 21
22 # The PROJECT_NUMBER tag can be used to enter a project or revision number. 22 # The PROJECT_NUMBER tag can be used to enter a project or revision number.
23 # This could be handy for archiving the generated documentation or 23 # This could be handy for archiving the generated documentation or
24 # if some version control system is used. 24 # if some version control system is used.
25 25
112 # only done if one of the specified strings matches the left-hand part of 112 # only done if one of the specified strings matches the left-hand part of
113 # the path. The tag can be used to show relative paths in the file list. 113 # the path. The tag can be used to show relative paths in the file list.
114 # If left blank the directory from which doxygen is run is used as the 114 # If left blank the directory from which doxygen is run is used as the
115 # path to strip. 115 # path to strip.
116 116
117 STRIP_FROM_PATH = ../src 117 STRIP_FROM_PATH = ./tmp
118 118
119 # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of 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 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. 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 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 123 # definition is used. Otherwise one should specify the include paths that
124 # are normally passed to the compiler using the -I flag. 124 # are normally passed to the compiler using the -I flag.
125 125
126 STRIP_FROM_INC_PATH = ../src 126 STRIP_FROM_INC_PATH = ./tmp
127 127
128 # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter 128 # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter
129 # (but less readable) file names. This can be useful is your file systems 129 # (but less readable) file names. This can be useful is your file systems
130 # doesn't support long names like on DOS, Mac, or CD-ROM. 130 # doesn't support long names like on DOS, Mac, or CD-ROM.
131 131
421 # The INPUT tag can be used to specify the files and/or directories that contain 421 # The INPUT tag can be used to specify the files and/or directories that contain
422 # documented source files. You may enter file names like "myfile.cpp" or 422 # documented source files. You may enter file names like "myfile.cpp" or
423 # directories like "/usr/src/myproject". Separate the files or directories 423 # directories like "/usr/src/myproject". Separate the files or directories
424 # with spaces. 424 # with spaces.
425 425
426 INPUT = ../src/common.h ../src/libpst.h ../src/libstrfunc.h ../src/timeconv.h ../src/vbuf.h 426 INPUT = tmp/libpst
427 427
428 # If the value of the INPUT tag contains directories, you can use the 428 # If the value of the INPUT tag contains directories, you can use the
429 # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp 429 # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
430 # and *.h) to filter out the source-files in the directories. If left 430 # and *.h) to filter out the source-files in the directories. If left
431 # blank the following patterns are tested: 431 # blank the following patterns are tested:
922 # If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro 922 # If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro
923 # names in the source code. If set to NO (the default) only conditional 923 # names in the source code. If set to NO (the default) only conditional
924 # compilation will be performed. Macro expansion can be done in a controlled 924 # compilation will be performed. Macro expansion can be done in a controlled
925 # way by setting EXPAND_ONLY_PREDEF to YES. 925 # way by setting EXPAND_ONLY_PREDEF to YES.
926 926
927 MACRO_EXPANSION = YES 927 MACRO_EXPANSION = NO
928 928
929 # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES 929 # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES
930 # then the macro expansion is limited to the macros specified with the 930 # then the macro expansion is limited to the macros specified with the
931 # PREDEFINED and EXPAND_AS_PREDEFINED tags. 931 # PREDEFINED and EXPAND_AS_PREDEFINED tags.
932 932