summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalVisualStudio8Generator.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-05-17 09:33:04 (GMT)
committerBrad King <brad.king@kitware.com>2015-05-19 15:02:33 (GMT)
commitb5f093f09652d6e7a2bb7a94b5a76e09b664cf68 (patch)
tree94b1031480ae31cec89026b16d54e8de0615cb61 /Source/cmGlobalVisualStudio8Generator.cxx
parentfa85829712aac5d274706c5ddd7e719819155713 (diff)
downloadCMake-b5f093f09652d6e7a2bb7a94b5a76e09b664cf68.zip
CMake-b5f093f09652d6e7a2bb7a94b5a76e09b664cf68.tar.gz
CMake-b5f093f09652d6e7a2bb7a94b5a76e09b664cf68.tar.bz2
VS: Simplify setting of flag table.
Diffstat (limited to 'Source/cmGlobalVisualStudio8Generator.cxx')
-rw-r--r--Source/cmGlobalVisualStudio8Generator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalVisualStudio8Generator.cxx b/Source/cmGlobalVisualStudio8Generator.cxx
index ff9ff10..0239d86 100644
--- a/Source/cmGlobalVisualStudio8Generator.cxx
+++ b/Source/cmGlobalVisualStudio8Generator.cxx
@@ -101,6 +101,7 @@ cmGlobalVisualStudio8Generator::cmGlobalVisualStudio8Generator(
{
this->ProjectConfigurationSectionName = "ProjectConfigurationPlatforms";
this->Name = name;
+ this->ExtraFlagTable = this->GetExtraFlagTableVS8();
}
//----------------------------------------------------------------------------
@@ -131,7 +132,6 @@ cmGlobalVisualStudio8Generator::CreateLocalGenerator(cmLocalGenerator* parent)
cmLocalVisualStudio7Generator *lg =
new cmLocalVisualStudio7Generator(cmLocalVisualStudioGenerator::VS8,
this, parent);
- lg->SetExtraFlagTable(this->GetExtraFlagTableVS8());
return lg;
}