diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2002-01-22 17:56:24 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2002-01-22 17:56:24 (GMT) |
commit | 0df9adf5f52c9d36bb430da927684c4353b00396 (patch) | |
tree | d15a4da33ccd88d9f7ebd50a6090a12c90ccbae4 /src/config.l | |
parent | a66e1ada3c7467e267ff39262178fa4577f0b6ab (diff) | |
download | Doxygen-0df9adf5f52c9d36bb430da927684c4353b00396.zip Doxygen-0df9adf5f52c9d36bb430da927684c4353b00396.tar.gz Doxygen-0df9adf5f52c9d36bb430da927684c4353b00396.tar.bz2 |
Doxygen-1.2.13-20020122
Diffstat (limited to 'src/config.l')
-rw-r--r-- | src/config.l | 21 |
1 files changed, 17 insertions, 4 deletions
diff --git a/src/config.l b/src/config.l index 466f1d1..cce57b9 100644 --- a/src/config.l +++ b/src/config.l @@ -2,7 +2,7 @@ * * * - * Copyright (C) 1997-2001 by Dimitri van Heesch. + * Copyright (C) 1997-2002 by Dimitri van Heesch. * * Permission to use, copy, modify, and distribute this software and its * documentation under the terms of the GNU General Public License is hereby @@ -31,7 +31,6 @@ #include <qstack.h> #include "config.h" -#include "lang_cfg.h" #include "version.h" #undef Config_getString @@ -1045,6 +1044,7 @@ void Config::check() filePatternList.append("*.hpp"); filePatternList.append("*.h++"); filePatternList.append("*.idl"); + filePatternList.append("*.odl"); } // add default pattern if needed @@ -1602,8 +1602,8 @@ void Config::create() "FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp \n" "and *.h) to filter out the source-files in the directories. If left \n" "blank the following patterns are tested: \n" - "*.c *.cc *.cxx *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx *.hpp \n" - "*.h++ *.idl \n" + "*.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx *.hpp \n" + "*.h++ *.idl *.odl\n" ); cb = addBool( "RECURSIVE", @@ -1618,6 +1618,12 @@ void Config::create() "excluded from the INPUT source files. This way you can easily exclude a \n" "subdirectory from a directory tree whose root is specified with the INPUT tag. \n" ); + cb = addBool( + "EXCLUDE_SYMLINKS", + "The EXCLUDE_SYMLINKS tag can be used select whether or not files or directories \n" + "that are symbolic links (a Unix filesystem feature) are excluded from the input. \n", + FALSE + ); cl->setWidgetType(ConfigList::FileAndDir); cl = addList( "EXCLUDE_PATTERNS", @@ -2134,6 +2140,13 @@ void Config::create() "will be listed. \n", FALSE ); + cb = addBool( + "EXTERNAL_GROUPS", + "If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed \n" + "in the modules index. If set to NO, only the current project's groups will \n" + "be listed. \n", + TRUE + ); cs = addString( "PERL_PATH", "The PERL_PATH should be the absolute path and name of the perl script \n" |