summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalVisualStudio12Generator.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2019-01-18 16:45:33 (GMT)
committerBrad King <brad.king@kitware.com>2019-01-18 17:30:19 (GMT)
commit8bba458ea5d6b792e165560d79efd8d8356f4329 (patch)
treeebab8912dd2069ac812fd12a61615c10a1c60782 /Source/cmGlobalVisualStudio12Generator.cxx
parent818df52c488a94628169811bddffe05f36c68b42 (diff)
downloadCMake-8bba458ea5d6b792e165560d79efd8d8356f4329.zip
CMake-8bba458ea5d6b792e165560d79efd8d8356f4329.tar.gz
CMake-8bba458ea5d6b792e165560d79efd8d8356f4329.tar.bz2
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 1c202a8..8b50684 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()