diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2009-12-30 13:28:15 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2009-12-30 13:28:15 (GMT) |
commit | df4e1edf1f6abb55a811e7c4a34764f27b50e502 (patch) | |
tree | e73e0b41d708a8ea6260e541347b464cb2e5aeaa /src/configoptions.cpp | |
parent | f4fab829c8e9b4bf54c60fd85805eb008c3838ab (diff) | |
download | Doxygen-df4e1edf1f6abb55a811e7c4a34764f27b50e502.zip Doxygen-df4e1edf1f6abb55a811e7c4a34764f27b50e502.tar.gz Doxygen-df4e1edf1f6abb55a811e7c4a34764f27b50e502.tar.bz2 |
Release-1.6.2
Diffstat (limited to 'src/configoptions.cpp')
-rw-r--r-- | src/configoptions.cpp | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/configoptions.cpp b/src/configoptions.cpp index 6ec5151..3233bef 100644 --- a/src/configoptions.cpp +++ b/src/configoptions.cpp @@ -1253,6 +1253,7 @@ void addConfigOptions(Config *cfg) "Qt Help Project output. For more information please see\n" "http://doc.trolltech.com/qthelpproject.html#namespace" ); + cs->setDefaultValue("org.doxygen.Project"); cs->addDependency("GENERATE_QHP"); //---- cs = cfg->addString( @@ -1298,6 +1299,28 @@ void addConfigOptions(Config *cfg) cs->addDependency("GENERATE_QHP"); //---- cb = cfg->addBool( + "GENERATE_ECLIPSEHELP", + "If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files\n" + " will be generated, which together with the HTML files, form an Eclipse help\n" + " plugin. To install this plugin and make it available under the help contents\n" + "menu in Eclipse, the contents of the directory containing the HTML and XML\n" + "files needs to be copied into the plugins directory of eclipse. The name of\n" + "the directory within the plugins directory should be the same as\n" + "the ECLIPSE_DOC_ID value. After copying Eclipse needs to be restarted before the help appears.", + FALSE + ); + cb->addDependency("GENERATE_HTML"); + //---- + cs = cfg->addString( + "ECLIPSE_DOC_ID", + "A unique identifier for the eclipse help plugin. When installing the plugin\n" + "the directory name containing the HTML and XML files should also have\n" + "this name." + ); + cs->setDefaultValue("org.doxygen.Project"); + cs->addDependency("GENERATE_ECLIPSEHELP"); + //---- + cb = cfg->addBool( "DISABLE_INDEX", "The DISABLE_INDEX tag can be used to turn on/off the condensed index at\n" "top of each HTML page. The value NO (the default) enables the index and\n" |