diff options
author | Brad King <brad.king@kitware.com> | 2023-08-08 17:31:31 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2023-08-10 13:33:20 (GMT) |
commit | bba1a23da9d64c4ef8d68d22af7b5c93727b66a7 (patch) | |
tree | d97cb536680eb40bf93998fe082ee7dd717fc0a2 /Source/cmGlobalVisualStudioVersionedGenerator.h | |
parent | 209973e510be9555268eb7b5722a56be60661130 (diff) | |
download | CMake-bba1a23da9d64c4ef8d68d22af7b5c93727b66a7.zip CMake-bba1a23da9d64c4ef8d68d22af7b5c93727b66a7.tar.gz CMake-bba1a23da9d64c4ef8d68d22af7b5c93727b66a7.tar.bz2 |
VS: Consolidate Windows SDK major version selection dispatch
Make logic choosing between Windows 10 SDKs and the Windows 8.1 SDK
easier to follow by consolidating it in the VS 14 generator. The only
information we need from VS 15+ generators is whether the 8.1 SDK is
installed.
Diffstat (limited to 'Source/cmGlobalVisualStudioVersionedGenerator.h')
-rw-r--r-- | Source/cmGlobalVisualStudioVersionedGenerator.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Source/cmGlobalVisualStudioVersionedGenerator.h b/Source/cmGlobalVisualStudioVersionedGenerator.h index 8712459..8f0345f 100644 --- a/Source/cmGlobalVisualStudioVersionedGenerator.h +++ b/Source/cmGlobalVisualStudioVersionedGenerator.h @@ -72,10 +72,8 @@ protected: // of the toolset is installed bool IsWindowsStoreToolsetInstalled() const; - bool InitializePlatformWindows(cmMakefile* mf) override; - // Check for a Win 8 SDK known to the registry or VS installer tool. - bool IsWin81SDKInstalled() const; + bool IsWin81SDKInstalled() const override; std::string GetWindows10SDKMaxVersionDefault(cmMakefile*) const override; |