diff options
author | Brad King <brad.king@kitware.com> | 2014-07-22 19:01:05 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-07-22 19:05:36 (GMT) |
commit | f5c0efdbe4d67a6f262dd670923674b003af1726 (patch) | |
tree | 0e995e4ac7421e0bbfb764409fd2ef1c349f102a /Source/cmGlobalVisualStudio8Generator.h | |
parent | 5c38fc1628b66ed405d66848e64f17834079d846 (diff) | |
download | CMake-f5c0efdbe4d67a6f262dd670923674b003af1726.zip CMake-f5c0efdbe4d67a6f262dd670923674b003af1726.tar.gz CMake-f5c0efdbe4d67a6f262dd670923674b003af1726.tar.bz2 |
cmGlobalGenerator: Create a non-virtual 'DoGenerate' method
Make the virtual 'Generate' method protected. Make 'DoGenerate'
the main entry point to generation. This gives cmGlobalGenerator
a chance to do some early operations before the individual
generator-specific implementations take over.
Diffstat (limited to 'Source/cmGlobalVisualStudio8Generator.h')
-rw-r--r-- | Source/cmGlobalVisualStudio8Generator.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalVisualStudio8Generator.h b/Source/cmGlobalVisualStudio8Generator.h index aea2f01..d7e1f3a 100644 --- a/Source/cmGlobalVisualStudio8Generator.h +++ b/Source/cmGlobalVisualStudio8Generator.h @@ -45,7 +45,6 @@ public: * target. */ virtual void Configure(); - virtual void Generate(); /** * Where does this version of Visual Studio look for macros for the @@ -69,6 +68,7 @@ public: return !this->WindowsCEVersion.empty(); } protected: + virtual void Generate(); virtual const char* GetIDEVersion() { return "8.0"; } virtual std::string FindDevEnvCommand(); |