diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-10-23 16:26:45 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-24 07:24:43 (GMT) |
commit | 330bfa83368989f6fd67072ef9f5c9e457230f17 (patch) | |
tree | 78f8ff78b76ed6c10897eb9622d58f624379ec07 /Source/cmGlobalVisualStudio7Generator.cxx | |
parent | b13e26e278dcc34243a2b31dfca8e23b01e15b76 (diff) | |
download | CMake-330bfa83368989f6fd67072ef9f5c9e457230f17.zip CMake-330bfa83368989f6fd67072ef9f5c9e457230f17.tar.gz CMake-330bfa83368989f6fd67072ef9f5c9e457230f17.tar.bz2 |
VS: Port target depends to cmGeneratorTarget
Diffstat (limited to 'Source/cmGlobalVisualStudio7Generator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudio7Generator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalVisualStudio7Generator.cxx b/Source/cmGlobalVisualStudio7Generator.cxx index 972188f..b2ad365 100644 --- a/Source/cmGlobalVisualStudio7Generator.cxx +++ b/Source/cmGlobalVisualStudio7Generator.cxx @@ -730,7 +730,7 @@ cmGlobalVisualStudio7Generator { int depcount = 0; std::string dspguid = this->GetGUID(dspname); - VSDependSet const& depends = this->VSTargetDepends[target->Target]; + VSDependSet const& depends = this->VSTargetDepends[target]; for(VSDependSet::const_iterator di = depends.begin(); di != depends.end(); ++di) { |