summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalVisualStudio10Generator.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2009-10-22 12:24:11 (GMT)
committerBrad King <brad.king@kitware.com>2009-10-22 12:24:11 (GMT)
commit50759a9ed3f7be7763fbbd6b54a338607ab3a513 (patch)
treed8e7f4f680e3ea2b0ec109eee10844fcb8959ee6 /Source/cmGlobalVisualStudio10Generator.cxx
parente1c1ab7197785b54de9b36f6b335419f333d9f12 (diff)
downloadCMake-50759a9ed3f7be7763fbbd6b54a338607ab3a513.zip
CMake-50759a9ed3f7be7763fbbd6b54a338607ab3a513.tar.gz
CMake-50759a9ed3f7be7763fbbd6b54a338607ab3a513.tar.bz2
WIP: VS 10 Win64 generator
See issue #9754.
Diffstat (limited to 'Source/cmGlobalVisualStudio10Generator.cxx')
-rw-r--r--Source/cmGlobalVisualStudio10Generator.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmGlobalVisualStudio10Generator.cxx b/Source/cmGlobalVisualStudio10Generator.cxx
index b6ae951..d909742 100644
--- a/Source/cmGlobalVisualStudio10Generator.cxx
+++ b/Source/cmGlobalVisualStudio10Generator.cxx
@@ -37,7 +37,8 @@ void cmGlobalVisualStudio10Generator::WriteSLNHeader(std::ostream& fout)
///! Create a local generator appropriate to this Global Generator
cmLocalGenerator *cmGlobalVisualStudio10Generator::CreateLocalGenerator()
{
- cmLocalGenerator*lg = new cmLocalVisualStudio10Generator;
+ cmLocalVisualStudio10Generator* lg = new cmLocalVisualStudio10Generator;
+ lg->SetPlatformName(this->PlatformName.c_str());
lg->SetGlobalGenerator(this);
return lg;
}