summaryrefslogtreecommitdiff
path: root/Modules/CMakeGraphVizOptions.cmake
diff options
context:
space:
mode:
authorDaniel Pfeifer <daniel@pfeifer-mail.de>2014-02-09 22:58:44 +0100
committerBrad King <brad.king@kitware.com>2014-02-10 10:30:50 -0500
commit18bef4cd66e62b0cb167767f121e54161749c2f8 (patch)
tree8f867124946e7164cc0c73c3c2b127191923db3b /Modules/CMakeGraphVizOptions.cmake
parent6abdc6c16acec3cb6601cc0bdeba4dec30857a02 (diff)
downloadcmake-18bef4cd66e62b0cb167767f121e54161749c2f8.tar.gz
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 'Modules/CMakeGraphVizOptions.cmake')
-rw-r--r--Modules/CMakeGraphVizOptions.cmake14
1 files changed, 14 insertions, 0 deletions
diff --git a/Modules/CMakeGraphVizOptions.cmake b/Modules/CMakeGraphVizOptions.cmake
index f2b8e59765..64c89b91d8 100644
--- a/Modules/CMakeGraphVizOptions.cmake
+++ b/Modules/CMakeGraphVizOptions.cmake
@@ -93,6 +93,20 @@
#
# * Mandatory : NO
# * Default : empty
+#
+# .. variable:: GRAPHVIZ_GENERATE_PER_TARGET
+#
+# Set this to FALSE to exclude per target graphs ``foo.dot.<target>``.
+#
+# * Mandatory : NO
+# * Default : TRUE
+#
+# .. variable:: GRAPHVIZ_GENERATE_DEPENDERS
+#
+# Set this to FALSE to exclude depender graphs ``foo.dot.<target>.dependers``.
+#
+# * Mandatory : NO
+# * Default : TRUE
#=============================================================================
# Copyright 2007-2009 Kitware, Inc.