summaryrefslogtreecommitdiffstats
path: root/addon
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2001-02-11 18:24:41 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2001-02-11 18:24:41 (GMT)
commit863353b89b228b87789e6d6c9257605acd796fff (patch)
treef98b164f024c28a0d6378b68142ed268239dba97 /addon
parent1b90a1cf58b6b94d00e28d8212828956e8f9d177 (diff)
downloadDoxygen-863353b89b228b87789e6d6c9257605acd796fff.zip
Doxygen-863353b89b228b87789e6d6c9257605acd796fff.tar.gz
Doxygen-863353b89b228b87789e6d6c9257605acd796fff.tar.bz2
Release-1.2.5-20010211
Diffstat (limited to 'addon')
-rw-r--r--addon/configgen/configgen.cpp18
-rw-r--r--addon/xmlgen/xml.cpp2
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"