diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-05-17 09:33:04 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-05-19 15:02:33 (GMT) |
commit | b5f093f09652d6e7a2bb7a94b5a76e09b664cf68 (patch) | |
tree | 94b1031480ae31cec89026b16d54e8de0615cb61 /Source/cmGlobalVisualStudio8Generator.cxx | |
parent | fa85829712aac5d274706c5ddd7e719819155713 (diff) | |
download | CMake-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.cxx | 2 |
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; } |