diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2006-05-07 18:20:12 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2006-05-07 18:20:12 (GMT) |
commit | 0674d909555d4b1fe1e000425195ef33b00fe1a5 (patch) | |
tree | 2d15670fa3b1c4279e9d9439de2606f91f865d8b /src/config.l | |
parent | 6f84cba4db755b69633ad66f6efbbaf94ca8df81 (diff) | |
download | Doxygen-0674d909555d4b1fe1e000425195ef33b00fe1a5.zip Doxygen-0674d909555d4b1fe1e000425195ef33b00fe1a5.tar.gz Doxygen-0674d909555d4b1fe1e000425195ef33b00fe1a5.tar.bz2 |
Release-1.4.6-20060507
Diffstat (limited to 'src/config.l')
-rw-r--r-- | src/config.l | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/src/config.l b/src/config.l index 7298baa..9755fca 100644 --- a/src/config.l +++ b/src/config.l @@ -2,7 +2,7 @@ * * * - * Copyright (C) 1997-2005 by Dimitri van Heesch. + * Copyright (C) 1997-2006 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 @@ -1949,6 +1949,14 @@ void Config::create() TRUE ); cb->addDependency("SOURCE_BROWSER"); + cb = addBool( "REFERENCES_LINK_SOURCE", + "If the REFERENCES_LINK_SOURCE tag is set to YES (the default)\n" + "and SOURCE_BROWSER tag is set to YES, then the hyperlinks from\n" + "functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will\n" + "link to the source code. Otherwise they will link to the documentstion.\n", + TRUE + ); + cb->addDependency("SOURCE_BROWSER"); cb = addBool( "USE_HTAGS", "If the USE_HTAGS tag is set to YES then the references to source code \n" @@ -2651,6 +2659,16 @@ void Config::create() ); cb->addDependency("HAVE_DOT"); cb = addBool( + "CALLER_GRAPH", + "If the CALLER_GRAPH and HAVE_DOT tags are set to YES then doxygen will \n" + "generate a caller dependency graph for every global function or class method. \n" + "Note that enabling this option will significantly increase the time of a run. \n" + "So in most cases it will be better to enable caller graphs for selected \n" + "functions only using the \\callergraph command.\n", + FALSE + ); + cb->addDependency("HAVE_DOT"); + cb = addBool( "GRAPHICAL_HIERARCHY", "If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen \n" "will graphical hierarchy of all classes instead of a textual one. \n", |