diff options
Diffstat (limited to 'src/config.l')
-rw-r--r-- | src/config.l | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/config.l b/src/config.l index 4750d59..43bfb32 100644 --- a/src/config.l +++ b/src/config.l @@ -1936,12 +1936,22 @@ void Config::create() ); cb->addDependency("SOURCE_BROWSER"); cb = addBool( + "USE_HTAGS", + "If the USE_HTAGS tag is set to YES then the references to source code \n" + "will point to the HTML generated by the htags(1) tool instead of doxygen \n" + "built-in source browser. The htags tool is part of GNU's global source \n" + "tagging system (see http://www.gnu.org/software/global/global.html) \n", + FALSE + ); + cb->addDependency("SOURCE_BROWSER"); + cb = addBool( "VERBATIM_HEADERS", "If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen \n" "will generate a verbatim copy of the header file for each class for \n" "which an include is specified. Set to NO to disable this. \n", TRUE - ); + ); + //----------------------------------------------------------------------------------------------- addInfo( "Index","configuration options related to the alphabetical class index"); //----------------------------------------------------------------------------------------------- |