diff options
author | Brad King <brad.king@kitware.com> | 2019-01-18 16:45:33 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-01-18 17:30:19 (GMT) |
commit | 8bba458ea5d6b792e165560d79efd8d8356f4329 (patch) | |
tree | ebab8912dd2069ac812fd12a61615c10a1c60782 /Source/cmGlobalVisualStudio9Generator.cxx | |
parent | 818df52c488a94628169811bddffe05f36c68b42 (diff) | |
download | CMake-8bba458ea5d6b792e165560d79efd8d8356f4329.zip CMake-8bba458ea5d6b792e165560d79efd8d8356f4329.tar.gz CMake-8bba458ea5d6b792e165560d79efd8d8356f4329.tar.bz2 |
Add global generator factory method to get default platform name
Diffstat (limited to 'Source/cmGlobalVisualStudio9Generator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudio9Generator.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmGlobalVisualStudio9Generator.cxx b/Source/cmGlobalVisualStudio9Generator.cxx index 15a83af..6e61d26 100644 --- a/Source/cmGlobalVisualStudio9Generator.cxx +++ b/Source/cmGlobalVisualStudio9Generator.cxx @@ -99,6 +99,8 @@ public: } return platforms; } + + std::string GetDefaultPlatformName() const override { return "Win32"; } }; cmGlobalGeneratorFactory* cmGlobalVisualStudio9Generator::NewFactory() |