summaryrefslogtreecommitdiff
path: root/Source/cmGlobalVisualStudio12Generator.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2019-01-18 11:45:33 -0500
committerBrad King <brad.king@kitware.com>2019-01-18 12:30:19 -0500
commit8bba458ea5d6b792e165560d79efd8d8356f4329 (patch)
treeebab8912dd2069ac812fd12a61615c10a1c60782 /Source/cmGlobalVisualStudio12Generator.cxx
parent818df52c488a94628169811bddffe05f36c68b42 (diff)
downloadcmake-8bba458ea5d6b792e165560d79efd8d8356f4329.tar.gz
Add global generator factory method to get default platform name
Diffstat (limited to 'Source/cmGlobalVisualStudio12Generator.cxx')
-rw-r--r--Source/cmGlobalVisualStudio12Generator.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmGlobalVisualStudio12Generator.cxx b/Source/cmGlobalVisualStudio12Generator.cxx
index 1c202a897b..8b50684cde 100644
--- a/Source/cmGlobalVisualStudio12Generator.cxx
+++ b/Source/cmGlobalVisualStudio12Generator.cxx
@@ -84,6 +84,8 @@ public:
platforms.emplace_back("ARM");
return platforms;
}
+
+ std::string GetDefaultPlatformName() const override { return "Win32"; }
};
cmGlobalGeneratorFactory* cmGlobalVisualStudio12Generator::NewFactory()