summaryrefslogtreecommitdiffstats
path: root/Source/cmGraphVizWriter.h
diff options
context:
space:
mode:
authorDaniel Pfeifer <daniel@pfeifer-mail.de>2014-02-09 21:58:44 (GMT)
committerBrad King <brad.king@kitware.com>2014-02-10 15:30:50 (GMT)
commit18bef4cd66e62b0cb167767f121e54161749c2f8 (patch)
tree8f867124946e7164cc0c73c3c2b127191923db3b /Source/cmGraphVizWriter.h
parent6abdc6c16acec3cb6601cc0bdeba4dec30857a02 (diff)
downloadCMake-18bef4cd66e62b0cb167767f121e54161749c2f8.zip
CMake-18bef4cd66e62b0cb167767f121e54161749c2f8.tar.gz
CMake-18bef4cd66e62b0cb167767f121e54161749c2f8.tar.bz2
graphviz: allow to disable per target graphs (#14746)
In CMakeGraphVizOptions.cmake, allow the options GRAPHVIZ_GENERATE_PER_TARGET and GRAPHVIZ_GENERATE_DEPENDERS to enable the generation of per target graphs and subgraphs respectively. Both options are TRUE per default to maintain current behavior.
Diffstat (limited to 'Source/cmGraphVizWriter.h')
-rw-r--r--Source/cmGraphVizWriter.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmGraphVizWriter.h b/Source/cmGraphVizWriter.h
index f784aa0..17b97f8 100644
--- a/Source/cmGraphVizWriter.h
+++ b/Source/cmGraphVizWriter.h
@@ -74,6 +74,8 @@ protected:
bool GenerateForSharedLibs;
bool GenerateForModuleLibs;
bool GenerateForExternals;
+ bool GeneratePerTarget;
+ bool GenerateDependers;
std::vector<cmsys::RegularExpression> TargetsToIgnoreRegex;