[Cmake-commits] CMake branch, next, updated. v3.7.0-1408-g04b111b
Brad King
brad.king at kitware.com
Tue Nov 29 10:06:58 EST 2016
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".
The branch, next has been updated
via 04b111b971f3e8d6f8c891d8f52943a2dca73496 (commit)
via f7c2a803a80d41de41f6b4838d49be2f8bae4afc (commit)
from 841e09299d5dbd91e2915117cbffabe80b29bcb1 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=04b111b971f3e8d6f8c891d8f52943a2dca73496
commit 04b111b971f3e8d6f8c891d8f52943a2dca73496
Merge: 841e092 f7c2a80
Author: Brad King <brad.king at kitware.com>
AuthorDate: Tue Nov 29 10:06:57 2016 -0500
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Tue Nov 29 10:06:57 2016 -0500
Merge topic 'CMakeGraphVizOptions-docs' into next
f7c2a803 CMakeGraphVizOptions: Minor improvements to docs.
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=f7c2a803a80d41de41f6b4838d49be2f8bae4afc
commit f7c2a803a80d41de41f6b4838d49be2f8bae4afc
Author: Harry Mallon <harry at codexdigital.com>
AuthorDate: Wed Nov 23 12:04:33 2016 +0000
Commit: Brad King <brad.king at kitware.com>
CommitDate: Tue Nov 29 10:05:02 2016 -0500
CMakeGraphVizOptions: Minor improvements to docs.
* Add `GRAPHVIZ_GRAPH_TYPE` options.
* Correct inaccurate usage info.
diff --git a/Modules/CMakeGraphVizOptions.cmake b/Modules/CMakeGraphVizOptions.cmake
index e7c4de6..420e3a9 100644
--- a/Modules/CMakeGraphVizOptions.cmake
+++ b/Modules/CMakeGraphVizOptions.cmake
@@ -13,8 +13,8 @@
# CMake
# can generate graphviz files, showing the dependencies between the
# targets in a project and also external libraries which are linked
-# against. When CMake is run with the --graphviz=foo option, it will
-# produce
+# against. When CMake is run with the --graphviz=foo.dot option, it will
+# produce:
#
# * a foo.dot file showing all dependencies in the project
# * a foo.dot.<target> file for each target, file showing on which other targets the respective target depends
@@ -29,11 +29,18 @@
#
# .. variable:: GRAPHVIZ_GRAPH_TYPE
#
-# The graph type
+# The graph type.
#
# * Mandatory : NO
# * Default : "digraph"
#
+# Valid graph types are:
+#
+# * "graph" : Nodes are joined with lines
+# * "digraph" : Nodes are joined with arrows showing direction
+# * "strict graph" : Like "graph" but max one line between each node
+# * "strict digraph" : Like "graph" but max one line between each node in each direction
+#
# .. variable:: GRAPHVIZ_GRAPH_NAME
#
# The graph name.
-----------------------------------------------------------------------
Summary of changes:
Modules/CMakeGraphVizOptions.cmake | 13 ++++++++++---
1 file changed, 10 insertions(+), 3 deletions(-)
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list