diff options
author | Brad King <brad.king@kitware.com> | 2009-09-16 11:44:08 -0400 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-09-16 11:44:08 -0400 |
commit | 09e398fa9f6e2a858780c78e3096a56e96a3dcb7 (patch) | |
tree | 39bc29839c768ee5253adf222d10ad6a475577d2 /Source/cmGlobalVisualStudio8Generator.h | |
parent | 33207a9a87d53b7cb97e0b30bc36dccad3c50289 (diff) | |
download | cmake-09e398fa9f6e2a858780c78e3096a56e96a3dcb7.tar.gz |
Create VS generator GetRegistryBase method
This method returns the registry key
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VisualStudio\<version>
A protected GetIDEVersion method retrieves the version-specific part of
the key name.
Diffstat (limited to 'Source/cmGlobalVisualStudio8Generator.h')
-rw-r--r-- | Source/cmGlobalVisualStudio8Generator.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmGlobalVisualStudio8Generator.h b/Source/cmGlobalVisualStudio8Generator.h index 74ee3c7163..11f33d356a 100644 --- a/Source/cmGlobalVisualStudio8Generator.h +++ b/Source/cmGlobalVisualStudio8Generator.h @@ -64,6 +64,7 @@ public: virtual std::string GetUserMacrosRegKeyBase(); protected: + virtual const char* GetIDEVersion() { return "8.0"; } virtual bool VSLinksDependencies() const { return false; } |