summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalVisualStudio8Generator.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-10-22 23:01:46 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-10-27 06:44:20 (GMT)
commit736c2042c6bade0322441aafabababcbd92af52e (patch)
tree6d337a677712c800b7c2834d909c4736c1baa818 /Source/cmGlobalVisualStudio8Generator.cxx
parentf210cb131e5814631d6d2974cf2437632446654f (diff)
downloadCMake-736c2042c6bade0322441aafabababcbd92af52e.zip
CMake-736c2042c6bade0322441aafabababcbd92af52e.tar.gz
CMake-736c2042c6bade0322441aafabababcbd92af52e.tar.bz2
cmGeneratorTarget: Add GetUtilities API
Diffstat (limited to 'Source/cmGlobalVisualStudio8Generator.cxx')
-rw-r--r--Source/cmGlobalVisualStudio8Generator.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmGlobalVisualStudio8Generator.cxx b/Source/cmGlobalVisualStudio8Generator.cxx
index bdb1b25..b771f11 100644
--- a/Source/cmGlobalVisualStudio8Generator.cxx
+++ b/Source/cmGlobalVisualStudio8Generator.cxx
@@ -464,8 +464,8 @@ bool cmGlobalVisualStudio8Generator::NeedLinkLibraryDependencies(
{
// Look for utility dependencies that magically link.
for(std::set<std::string>::const_iterator ui =
- target->Target->GetUtilities().begin();
- ui != target->Target->GetUtilities().end(); ++ui)
+ target->GetUtilities().begin();
+ ui != target->GetUtilities().end(); ++ui)
{
if(cmGeneratorTarget* depTarget =
target->GetLocalGenerator()->FindGeneratorTargetToUse(ui->c_str()))