diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-10-23 16:26:46 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-24 07:24:43 (GMT) |
commit | 600af01d41e32d304e43dc98783ec0f7f010f40e (patch) | |
tree | 06228d5801877a7bd1ef1bc8cc3cf347de6650ca /Source/cmGlobalVisualStudio71Generator.cxx | |
parent | 330bfa83368989f6fd67072ef9f5c9e457230f17 (diff) | |
download | CMake-600af01d41e32d304e43dc98783ec0f7f010f40e.zip CMake-600af01d41e32d304e43dc98783ec0f7f010f40e.tar.gz CMake-600af01d41e32d304e43dc98783ec0f7f010f40e.tar.bz2 |
VS: Port utility 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 3152e91..8227b82 100644 --- a/Source/cmGlobalVisualStudio71Generator.cxx +++ b/Source/cmGlobalVisualStudio71Generator.cxx @@ -180,7 +180,7 @@ cmGlobalVisualStudio71Generator::WriteProject(std::ostream& fout, fout <<"EndProject\n"; - UtilityDependsMap::iterator ui = this->UtilityDepends.find(t->Target); + UtilityDependsMap::iterator ui = this->UtilityDepends.find(t); if(ui != this->UtilityDepends.end()) { const char* uname = ui->second.c_str(); |