diff options
author | Brad King <brad.king@kitware.com> | 2018-10-29 13:56:18 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2018-10-29 13:56:25 (GMT) |
commit | bcd61da3503be85d247657827e5fb08db3ecf07d (patch) | |
tree | 2973f2163d0bf63a4e038cf62bbfbe547fb9bd44 /Source/cmake.cxx | |
parent | f0a9094d809a80ef754642b13d7b66a90b61cee7 (diff) | |
parent | 50c4dec07267c8678302b0c4cf0c89a5a02b1d6b (diff) | |
download | CMake-bcd61da3503be85d247657827e5fb08db3ecf07d.zip CMake-bcd61da3503be85d247657827e5fb08db3ecf07d.tar.gz CMake-bcd61da3503be85d247657827e5fb08db3ecf07d.tar.bz2 |
Merge topic 'graphviz-fix-alias'
50c4dec072 graphviz: dereference ALIAS targets
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !2521
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r-- | Source/cmake.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx index 1aff5eb..79af3e7 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -2143,7 +2143,7 @@ void cmake::MarkCliAsUsed(const std::string& variable) void cmake::GenerateGraphViz(const char* fileName) const { #ifdef CMAKE_BUILD_WITH_CMAKE - cmGraphVizWriter gvWriter(this->GetGlobalGenerator()->GetLocalGenerators()); + cmGraphVizWriter gvWriter(this->GetGlobalGenerator()); std::string settingsFile = this->GetHomeOutputDirectory(); settingsFile += "/CMakeGraphVizOptions.cmake"; |