diff options
author | Brad King <brad.king@kitware.com> | 2019-01-10 13:43:29 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-01-10 14:38:35 (GMT) |
commit | 89cc3d432bc576d00cb12880b37ec8b348599897 (patch) | |
tree | 45d74c1605d34d6c2ad289d6572f3084b81cbb50 /Source/cmGlobalVisualStudio7Generator.h | |
parent | 40a732800d52b394d7bd4a81e9aaef04ef5914e6 (diff) | |
download | CMake-89cc3d432bc576d00cb12880b37ec8b348599897.zip CMake-89cc3d432bc576d00cb12880b37ec8b348599897.tar.gz CMake-89cc3d432bc576d00cb12880b37ec8b348599897.tar.bz2 |
VS: Move platform name members to top-level global generator
We no longer support any VS versions that pre-date support for
multiple platforms (target architectures).
Diffstat (limited to 'Source/cmGlobalVisualStudio7Generator.h')
-rw-r--r-- | Source/cmGlobalVisualStudio7Generator.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/Source/cmGlobalVisualStudio7Generator.h b/Source/cmGlobalVisualStudio7Generator.h index 4240bd4..d2a2a38 100644 --- a/Source/cmGlobalVisualStudio7Generator.h +++ b/Source/cmGlobalVisualStudio7Generator.h @@ -20,9 +20,6 @@ class cmGlobalVisualStudio7Generator : public cmGlobalVisualStudioGenerator public: ~cmGlobalVisualStudio7Generator(); - ///! Get the name for the platform. - std::string const& GetPlatformName() const; - ///! Create a local generator appropriate to this Global Generator cmLocalGenerator* CreateLocalGenerator(cmMakefile* mf) override; @@ -32,8 +29,6 @@ public: bool SetSystemName(std::string const& s, cmMakefile* mf) override; - bool SetGeneratorPlatform(std::string const& p, cmMakefile* mf) override; - /** * Utilized by the generator factory to determine if this generator * supports toolsets. @@ -167,8 +162,6 @@ protected: // Set during OutputSLNFile with the name of the current project. // There is one SLN file per project. std::string CurrentProject; - std::string GeneratorPlatform; - std::string DefaultPlatformName; bool MasmEnabled; bool NasmEnabled; |