diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2001-02-11 18:24:41 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2001-02-11 18:24:41 (GMT) |
commit | d27070014e0f36246e7eec3899c7d55503b1a05a (patch) | |
tree | f98b164f024c28a0d6378b68142ed268239dba97 /addon | |
parent | f376c26e3dbe33a773a2f424df4b9c62c8c880ef (diff) | |
download | Doxygen-d27070014e0f36246e7eec3899c7d55503b1a05a.zip Doxygen-d27070014e0f36246e7eec3899c7d55503b1a05a.tar.gz Doxygen-d27070014e0f36246e7eec3899c7d55503b1a05a.tar.bz2 |
Release-1.2.5-20010211
Diffstat (limited to 'addon')
-rw-r--r-- | addon/configgen/configgen.cpp | 18 | ||||
-rw-r--r-- | addon/xmlgen/xml.cpp | 2 |
2 files changed, 20 insertions, 0 deletions
diff --git a/addon/configgen/configgen.cpp b/addon/configgen/configgen.cpp index 69dcca3..cb4cfdf 100644 --- a/addon/configgen/configgen.cpp +++ b/addon/configgen/configgen.cpp @@ -1306,6 +1306,15 @@ void init() "of the generated HTML documentation. \n" ); addDependency("htmlHelpFlag","generateHtml"); + ConfigBool::add( "htmlHelpChiFlag", + "GENERATE_CHI", + "FALSE", + "should chi file be generated?", + "If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag \n" + "controls if a separate .chi index file is generated (YES) or that \n" + "it should be included in the master .chm file (NO).\n" + ); + addDependency("htmlHelpChiFlag","generateHtml"); ConfigBool::add( "noIndexFlag", "DISABLE_INDEX", "FALSE", @@ -1755,6 +1764,15 @@ void init() "arrows in the dot generated graphs. \n" ); addDependency("generateLegend","haveDotFlag"); + ConfigBool::add( "dotCleanUp", + "DOT_CLEANUP", + "TRUE", + "remove intermedia dot files?", + "If the DOT_CLEANUP tag is set to YES (the default) Doxygen will \n" + "remove the intermedate dot files that are used to generate \n" + "the various graphs. \n" + ); + addDependency("dotCleanUp","haveDotFlag"); //----------------------------------------------------------------------------------------------- ConfigInfo::add( "Search","Configuration::addtions related to the search engine "); diff --git a/addon/xmlgen/xml.cpp b/addon/xmlgen/xml.cpp index 7717cbe..93c1250 100644 --- a/addon/xmlgen/xml.cpp +++ b/addon/xmlgen/xml.cpp @@ -16,6 +16,8 @@ * */ +#include <stdlib.h> + #include "qtbc.h" #include "xml.h" #include "doxygen.h" |