summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalGenerator.cxx
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2006-02-23 18:46:34 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2006-02-23 18:46:34 (GMT)
commit7c0251014ca0fe647f7ef3743db10fa470b03034 (patch)
treedfc8a37ed8bef0ed686165a4a2c6011da165f490 /Source/cmGlobalGenerator.cxx
parent549b77034e4a927a5f5775b0d6d2ef8026b14de0 (diff)
downloadCMake-7c0251014ca0fe647f7ef3743db10fa470b03034.zip
CMake-7c0251014ca0fe647f7ef3743db10fa470b03034.tar.gz
CMake-7c0251014ca0fe647f7ef3743db10fa470b03034.tar.bz2
COMP: More fixes for visual studio
Diffstat (limited to 'Source/cmGlobalGenerator.cxx')
-rw-r--r--Source/cmGlobalGenerator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalGenerator.cxx b/Source/cmGlobalGenerator.cxx
index c8f07ea..ade6421 100644
--- a/Source/cmGlobalGenerator.cxx
+++ b/Source/cmGlobalGenerator.cxx
@@ -695,7 +695,7 @@ void cmGlobalGenerator::Generate()
cmTargets::iterator tit;
for ( tit = globalTargets.begin(); tit != globalTargets.end(); ++ tit )
{
- targets[tit->first] = tit->second;
+ (*targets)[tit->first] = tit->second;
}
m_LocalGenerators[i]->Generate();
m_LocalGenerators[i]->GenerateInstallRules();