summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalVisualStudio14Generator.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2014-07-17 20:58:34 (GMT)
committerBrad King <brad.king@kitware.com>2014-07-17 20:59:53 (GMT)
commit7a526c35f60ced43606bf028a21dedfaac77c2e9 (patch)
tree3cde6f3f16175335dfa67a9941967fe3bd5d939b /Source/cmGlobalVisualStudio14Generator.cxx
parente7fdb44b1be63e18d03e86f61611dba677e98978 (diff)
downloadCMake-7a526c35f60ced43606bf028a21dedfaac77c2e9.zip
CMake-7a526c35f60ced43606bf028a21dedfaac77c2e9.tar.gz
CMake-7a526c35f60ced43606bf028a21dedfaac77c2e9.tar.bz2
VS: Delay getting platform name in local generator
Ask the global generator during generation instead of trying to store it up front. Later the global generator may not know the platform name when it is creating the local generator.
Diffstat (limited to 'Source/cmGlobalVisualStudio14Generator.cxx')
-rw-r--r--Source/cmGlobalVisualStudio14Generator.cxx1
1 files changed, 0 insertions, 1 deletions
diff --git a/Source/cmGlobalVisualStudio14Generator.cxx b/Source/cmGlobalVisualStudio14Generator.cxx
index 076b057..d001f93 100644
--- a/Source/cmGlobalVisualStudio14Generator.cxx
+++ b/Source/cmGlobalVisualStudio14Generator.cxx
@@ -108,7 +108,6 @@ cmLocalGenerator *cmGlobalVisualStudio14Generator::CreateLocalGenerator()
{
cmLocalVisualStudio10Generator* lg =
new cmLocalVisualStudio10Generator(cmLocalVisualStudioGenerator::VS14);
- lg->SetPlatformName(this->GetPlatformName());
lg->SetGlobalGenerator(this);
return lg;
}