diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-10-23 16:26:47 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-24 07:24:43 (GMT) |
commit | 97b3768898431ffff824388dc263654a35a33aa2 (patch) | |
tree | 95de34fe52afc20873f982a13930b7949fe3d359 /Source/cmGlobalVisualStudioGenerator.cxx | |
parent | 600af01d41e32d304e43dc98783ec0f7f010f40e (diff) | |
download | CMake-97b3768898431ffff824388dc263654a35a33aa2.zip CMake-97b3768898431ffff824388dc263654a35a33aa2.tar.gz CMake-97b3768898431ffff824388dc263654a35a33aa2.tar.bz2 |
VS: Port WriteUtilityDepends to cmGeneratorTarget
Diffstat (limited to 'Source/cmGlobalVisualStudioGenerator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudioGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalVisualStudioGenerator.cxx b/Source/cmGlobalVisualStudioGenerator.cxx index 3e25559..0ba0ccb 100644 --- a/Source/cmGlobalVisualStudioGenerator.cxx +++ b/Source/cmGlobalVisualStudioGenerator.cxx @@ -514,7 +514,7 @@ cmGlobalVisualStudioGenerator::GetUtilityDepend( UtilityDependsMap::iterator i = this->UtilityDepends.find(target); if(i == this->UtilityDepends.end()) { - std::string name = this->WriteUtilityDepend(target->Target); + std::string name = this->WriteUtilityDepend(target); UtilityDependsMap::value_type entry(target, name); i = this->UtilityDepends.insert(entry).first; } |