summaryrefslogtreecommitdiffstats
path: root/Source/cmake.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2018-10-29 13:56:18 (GMT)
committerKitware Robot <kwrobot@kitware.com>2018-10-29 13:56:25 (GMT)
commitbcd61da3503be85d247657827e5fb08db3ecf07d (patch)
tree2973f2163d0bf63a4e038cf62bbfbe547fb9bd44 /Source/cmake.cxx
parentf0a9094d809a80ef754642b13d7b66a90b61cee7 (diff)
parent50c4dec07267c8678302b0c4cf0c89a5a02b1d6b (diff)
downloadCMake-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.cxx2
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";