summaryrefslogtreecommitdiff
path: root/Source/cmGlobalVisualStudio8Generator.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2019-01-10 09:13:54 -0500
committerBrad King <brad.king@kitware.com>2019-01-10 09:38:35 -0500
commitb91f6f39f7be92bab1302c4587dd51423f20cf00 (patch)
tree168ccdfb376d9b3b99b916f09b54d4ab1f7d0e97 /Source/cmGlobalVisualStudio8Generator.cxx
parent89cc3d432bc576d00cb12880b37ec8b348599897 (diff)
downloadcmake-b91f6f39f7be92bab1302c4587dd51423f20cf00.tar.gz
VS: Track explicitly when platform is specified in generator name
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 616328d4bb..55284c97f2 100644
--- a/Source/cmGlobalVisualStudio8Generator.cxx
+++ b/Source/cmGlobalVisualStudio8Generator.cxx
@@ -61,7 +61,7 @@ void cmGlobalVisualStudio8Generator::AddPlatformDefinitions(cmMakefile* mf)
bool cmGlobalVisualStudio8Generator::SetGeneratorPlatform(std::string const& p,
cmMakefile* mf)
{
- if (this->DefaultPlatformName == "Win32") {
+ if (!this->PlatformInGeneratorName) {
this->GeneratorPlatform = p;
return this->cmGlobalVisualStudio7Generator::SetGeneratorPlatform("", mf);
} else {