diff options
author | Patrick Gansterer <paroga@paroga.com> | 2010-08-16 19:49:14 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2010-08-24 21:36:09 (GMT) |
commit | 807fca4ce67e4c95133082060b82fdecca30fcde (patch) | |
tree | f43877fed364517f86194b20d314935a4be427aa /Source/cmGlobalVisualStudio9Generator.cxx | |
parent | d5e3e04a23e270de97c8614aaca9663d64c42942 (diff) | |
download | CMake-807fca4ce67e4c95133082060b82fdecca30fcde.zip CMake-807fca4ce67e4c95133082060b82fdecca30fcde.tar.gz CMake-807fca4ce67e4c95133082060b82fdecca30fcde.tar.bz2 |
VS: Convert PlatformName member to a virtual method
Diffstat (limited to 'Source/cmGlobalVisualStudio9Generator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudio9Generator.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmGlobalVisualStudio9Generator.cxx b/Source/cmGlobalVisualStudio9Generator.cxx index f6ae705..98acf0f 100644 --- a/Source/cmGlobalVisualStudio9Generator.cxx +++ b/Source/cmGlobalVisualStudio9Generator.cxx @@ -42,6 +42,7 @@ cmLocalGenerator *cmGlobalVisualStudio9Generator::CreateLocalGenerator() { cmLocalVisualStudio7Generator *lg = new cmLocalVisualStudio7Generator; lg->SetVersion9(); + lg->SetPlatformName(this->GetPlatformName()); lg->SetExtraFlagTable(this->GetExtraFlagTableVS8()); lg->SetGlobalGenerator(this); return lg; |