HELP - InputOptions
HelpConfig OptionsInputOptions
Description  
Configuration options related to the input files.
IGNORE_FILE_NAMEThe IGNORE_FILE_NAME tag can be used to specify a possible textfile in each directory which is searched for files/subdirs to exclude. The default value is 'DoxyS.ignore'. It works like '.cvsignore'. The file is a simple textfile listing one file/subdir per line relative to the directory of the 'DoxyS.ignore' file. Like this: file_to_ignore.cpp
Default value:
DoxyS.ignore
FILE_PATTERNSIf the value of the INPUT tag contains directories, you can use the FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and *.h) to filter out the source-files in the directories. If left blank the following patterns are tested: *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx *.hpp *.h++ *.idl *.odl *.cs *.page *.dir *.dxd *.doc
Default value:
*.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx *.hpp *.h++ *.idl *.odl *.cs *.page *.dir *.dxd *.doc
RECURSIVEThe RECURSIVE tag can be used to turn specify whether or not subdirectories should be searched for input files as well. Possible values are YES and NO. If left blank YES is used.
Default value:
YES
EXCLUDEThe EXCLUDE tag can be used to specify files and/or directories that should excluded from the INPUT source files. This way you can easily exclude a subdirectory from a directory tree whose root is specified with the INPUT tag.
Default value:
doxys_docs/
EXCLUDE_SYMLINKSThe EXCLUDE_SYMLINKS tag can be used select whether or not files or directories that are symbolic links (a Unix filesystem feature) are excluded from the input.
Default value:
NO
EXCLUDE_PATTERNSIf the value of the INPUT tag contains directories, you can use the EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude certain files from those directories.
EXAMPLE_PATHIf the example is not found relatively to current directory, then try to prepend the EXAMPLE_PATH to see if the example is found here!
IMAGE_PATHIf the image is not found relatively to current directory, then try to prepend the IMAGE_PATH to see if the image is found here!
INPUT_FILTERThe INPUT_FILTER tag can be used to specify a program that DoxyS should invoke to filter for each input file. DoxyS will invoke the filter program by executing (via popen()) the command: filter input-file, where filter is the value of the INPUT_FILTER tag, and input-file is the name of an input file. DoxyS will then use the output that the filter program writes to standard output.
FILTER_SOURCE_FILESIf the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using INPUT_FILTER) will be used to filter the input files when producing source files to browse.
Default value:
NO
SIMPLE_REPLACE_FILTERSet this option to a list of pairs of values do do search replace on. If you want a value removed use the special __REMOVE__ as replace word. This filter works even if the preprocessor is not used. All values in input are replaced. For example:BOOL bool MY_EXTERN __REMOVE__This replaces 'BOOL' with 'bool' and removes all occurences of 'MY_EXTERN'