summaryrefslogtreecommitdiffstats
path: root/src/configoptions.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2011-06-06 19:49:53 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2011-06-06 19:49:53 (GMT)
commitde297f6d77f3861b649f3fcba443483d6be6afe9 (patch)
treeb158d4e26359c261b119f485d1d4c69a6034663c /src/configoptions.cpp
parentc604d141eb8b0708022a3e4b48b0b1871b692aa6 (diff)
downloadDoxygen-de297f6d77f3861b649f3fcba443483d6be6afe9.zip
Doxygen-de297f6d77f3861b649f3fcba443483d6be6afe9.tar.gz
Doxygen-de297f6d77f3861b649f3fcba443483d6be6afe9.tar.bz2
Release-1.7.4-20110606
Diffstat (limited to 'src/configoptions.cpp')
-rw-r--r--src/configoptions.cpp10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/configoptions.cpp b/src/configoptions.cpp
index 15c6424..2afa94a 100644
--- a/src/configoptions.cpp
+++ b/src/configoptions.cpp
@@ -886,7 +886,8 @@ void addConfigOptions(Config *cfg)
"EXCLUDE",
"The EXCLUDE tag can be used to specify files and/or directories that should\n"
"excluded from the INPUT source files. This way you can easily exclude a\n"
- "subdirectory from a directory tree whose root is specified with the INPUT tag."
+ "subdirectory from a directory tree whose root is specified with the INPUT tag.\n"
+ "Note that relative paths are relative to directory from which doxygen is run."
);
cl->setWidgetType(ConfigList::FileAndDir);
//----
@@ -2268,6 +2269,13 @@ void addConfigOptions(Config *cfg)
ce->addValue("svg");
ce->addDependency("HAVE_DOT");
//----
+ cb = cfg->addBool(
+ "INTERACTIVE_SVG",
+ "",
+ FALSE
+ );
+ cb->addDependency("HAVE_DOT");
+ //----
cs = cfg->addString(
"DOT_PATH",
"The tag DOT_PATH can be used to specify the path where the dot tool can be\n"