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/cmGlobalVisualStudio71Generator.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/cmGlobalVisualStudio71Generator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudio71Generator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalVisualStudio71Generator.cxx b/Source/cmGlobalVisualStudio71Generator.cxx index 77c8fc8..3152e91 100644 --- a/Source/cmGlobalVisualStudio71Generator.cxx +++ b/Source/cmGlobalVisualStudio71Generator.cxx @@ -206,7 +206,7 @@ cmGlobalVisualStudio71Generator const std::string&, const char*, cmGeneratorTarget const* target) { - VSDependSet const& depends = this->VSTargetDepends[target->Target]; + VSDependSet const& depends = this->VSTargetDepends[target]; for(VSDependSet::const_iterator di = depends.begin(); di != depends.end(); ++di) { |