cmake/Source/cmGlobalVisualStudio14Generator.cxx

371 lines
12 KiB
C++
Raw Normal View History

2016-10-30 18:24:19 +01:00
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
2015-04-27 22:25:09 +02:00
#include "cmGlobalVisualStudio14Generator.h"
2016-07-09 11:21:54 +02:00
2020-08-30 11:54:41 +02:00
#include <cm/vector>
2017-04-14 19:02:05 +02:00
#include "cmDocumentationEntry.h"
2015-04-27 22:25:09 +02:00
#include "cmLocalVisualStudio10Generator.h"
#include "cmMakefile.h"
static const char vs14generatorName[] = "Visual Studio 14 2015";
// Map generator name without year to name with year.
static const char* cmVS14GenName(const std::string& name, std::string& genName)
{
2016-07-09 11:21:54 +02:00
if (strncmp(name.c_str(), vs14generatorName,
sizeof(vs14generatorName) - 6) != 0) {
2015-04-27 22:25:09 +02:00
return 0;
2016-07-09 11:21:54 +02:00
}
2015-04-27 22:25:09 +02:00
const char* p = name.c_str() + sizeof(vs14generatorName) - 6;
2016-07-09 11:21:54 +02:00
if (cmHasLiteralPrefix(p, " 2015")) {
2015-04-27 22:25:09 +02:00
p += 5;
2016-07-09 11:21:54 +02:00
}
2015-04-27 22:25:09 +02:00
genName = std::string(vs14generatorName) + p;
return p;
}
class cmGlobalVisualStudio14Generator::Factory
: public cmGlobalGeneratorFactory
{
public:
2020-08-30 11:54:41 +02:00
std::unique_ptr<cmGlobalGenerator> CreateGlobalGenerator(
2021-09-14 00:13:48 +02:00
const std::string& name, bool allowArch, cmake* cm) const override
2016-07-09 11:21:54 +02:00
{
2015-04-27 22:25:09 +02:00
std::string genName;
const char* p = cmVS14GenName(name, genName);
2016-07-09 11:21:54 +02:00
if (!p) {
2020-08-30 11:54:41 +02:00
return std::unique_ptr<cmGlobalGenerator>();
2016-07-09 11:21:54 +02:00
}
if (!*p) {
2020-08-30 11:54:41 +02:00
return std::unique_ptr<cmGlobalGenerator>(
new cmGlobalVisualStudio14Generator(cm, genName, ""));
2016-07-09 11:21:54 +02:00
}
2021-09-14 00:13:48 +02:00
if (!allowArch || *p++ != ' ') {
2020-08-30 11:54:41 +02:00
return std::unique_ptr<cmGlobalGenerator>();
2016-07-09 11:21:54 +02:00
}
if (strcmp(p, "Win64") == 0) {
2020-08-30 11:54:41 +02:00
return std::unique_ptr<cmGlobalGenerator>(
new cmGlobalVisualStudio14Generator(cm, genName, "x64"));
2016-07-09 11:21:54 +02:00
}
if (strcmp(p, "ARM") == 0) {
2020-08-30 11:54:41 +02:00
return std::unique_ptr<cmGlobalGenerator>(
new cmGlobalVisualStudio14Generator(cm, genName, "ARM"));
2015-04-27 22:25:09 +02:00
}
2020-08-30 11:54:41 +02:00
return std::unique_ptr<cmGlobalGenerator>();
2016-07-09 11:21:54 +02:00
}
2015-04-27 22:25:09 +02:00
2018-01-26 17:06:56 +01:00
void GetDocumentation(cmDocumentationEntry& entry) const override
2016-07-09 11:21:54 +02:00
{
2015-08-17 11:37:30 +02:00
entry.Name = std::string(vs14generatorName) + " [arch]";
2016-07-09 11:21:54 +02:00
entry.Brief = "Generates Visual Studio 2015 project files. "
"Optional [arch] can be \"Win64\" or \"ARM\".";
}
2015-04-27 22:25:09 +02:00
2019-11-11 23:01:05 +01:00
std::vector<std::string> GetGeneratorNames() const override
2016-07-09 11:21:54 +02:00
{
2019-11-11 23:01:05 +01:00
std::vector<std::string> names;
2015-04-27 22:25:09 +02:00
names.push_back(vs14generatorName);
2019-11-11 23:01:05 +01:00
return names;
}
std::vector<std::string> GetGeneratorNamesWithPlatform() const override
{
std::vector<std::string> names;
2015-04-27 22:25:09 +02:00
names.push_back(vs14generatorName + std::string(" ARM"));
names.push_back(vs14generatorName + std::string(" Win64"));
2019-11-11 23:01:05 +01:00
return names;
2016-07-09 11:21:54 +02:00
}
2016-03-13 13:35:51 +01:00
2018-01-26 17:06:56 +01:00
bool SupportsToolset() const override { return true; }
bool SupportsPlatform() const override { return true; }
2019-11-11 23:01:05 +01:00
std::vector<std::string> GetKnownPlatforms() const override
{
std::vector<std::string> platforms;
platforms.emplace_back("x64");
platforms.emplace_back("Win32");
platforms.emplace_back("ARM");
return platforms;
}
std::string GetDefaultPlatformName() const override { return "Win32"; }
2015-04-27 22:25:09 +02:00
};
2020-08-30 11:54:41 +02:00
std::unique_ptr<cmGlobalGeneratorFactory>
cmGlobalVisualStudio14Generator::NewFactory()
2015-04-27 22:25:09 +02:00
{
2020-08-30 11:54:41 +02:00
return std::unique_ptr<cmGlobalGeneratorFactory>(new Factory);
2015-04-27 22:25:09 +02:00
}
2016-07-09 11:21:54 +02:00
cmGlobalVisualStudio14Generator::cmGlobalVisualStudio14Generator(
2019-11-11 23:01:05 +01:00
cmake* cm, const std::string& name,
std::string const& platformInGeneratorName)
: cmGlobalVisualStudio12Generator(cm, name, platformInGeneratorName)
2015-04-27 22:25:09 +02:00
{
std::string vc14Express;
this->ExpressEdition = cmSystemTools::ReadRegistryValue(
"HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VCExpress\\14.0\\Setup\\VC;"
2016-07-09 11:21:54 +02:00
"ProductDir",
vc14Express, cmSystemTools::KeyWOW64_32);
2015-04-27 22:25:09 +02:00
this->DefaultPlatformToolset = "v140";
2021-09-14 00:13:48 +02:00
this->DefaultAndroidToolset = "Clang_3_8";
2019-11-11 23:01:05 +01:00
this->DefaultCLFlagTableName = "v140";
this->DefaultCSharpFlagTableName = "v140";
this->DefaultLibFlagTableName = "v14";
this->DefaultLinkFlagTableName = "v140";
this->DefaultMasmFlagTableName = "v14";
this->DefaultRCFlagTableName = "v14";
2015-08-17 11:37:30 +02:00
this->Version = VS14;
2015-04-27 22:25:09 +02:00
}
2016-07-09 11:21:54 +02:00
bool cmGlobalVisualStudio14Generator::MatchesGeneratorName(
const std::string& name) const
2015-04-27 22:25:09 +02:00
{
std::string genName;
2016-07-09 11:21:54 +02:00
if (cmVS14GenName(name, genName)) {
2015-04-27 22:25:09 +02:00
return genName == this->GetName();
2016-07-09 11:21:54 +02:00
}
2015-04-27 22:25:09 +02:00
return false;
}
2015-11-17 17:22:37 +01:00
bool cmGlobalVisualStudio14Generator::InitializeWindows(cmMakefile* mf)
{
2016-07-09 11:21:54 +02:00
if (cmHasLiteralPrefix(this->SystemVersion, "10.0")) {
2016-03-13 13:35:51 +01:00
return this->SelectWindows10SDK(mf, false);
2016-07-09 11:21:54 +02:00
}
2015-11-17 17:22:37 +01:00
return true;
}
bool cmGlobalVisualStudio14Generator::InitializeWindowsStore(cmMakefile* mf)
{
2016-07-09 11:21:54 +02:00
std::ostringstream e;
if (!this->SelectWindowsStoreToolset(this->DefaultPlatformToolset)) {
if (this->DefaultPlatformToolset.empty()) {
2018-08-09 18:06:22 +02:00
e << this->GetName()
<< " supports Windows Store '8.0', '8.1' and "
"'10.0', but not '"
2016-07-09 11:21:54 +02:00
<< this->SystemVersion << "'. Check CMAKE_SYSTEM_VERSION.";
} else {
2015-11-17 17:22:37 +01:00
e << "A Windows Store component with CMake requires both the Windows "
<< "Desktop SDK as well as the Windows Store '" << this->SystemVersion
<< "' SDK. Please make sure that you have both installed";
2016-07-09 11:21:54 +02:00
}
2019-11-11 23:01:05 +01:00
mf->IssueMessage(MessageType::FATAL_ERROR, e.str());
2015-11-17 17:22:37 +01:00
return false;
2016-07-09 11:21:54 +02:00
}
if (cmHasLiteralPrefix(this->SystemVersion, "10.0")) {
2016-03-13 13:35:51 +01:00
return this->SelectWindows10SDK(mf, true);
2016-07-09 11:21:54 +02:00
}
2015-11-17 17:22:37 +01:00
return true;
}
2021-09-14 00:13:48 +02:00
bool cmGlobalVisualStudio14Generator::InitializeAndroid(cmMakefile*)
{
return true;
}
2016-03-13 13:35:51 +01:00
bool cmGlobalVisualStudio14Generator::SelectWindows10SDK(cmMakefile* mf,
bool required)
2015-11-17 17:22:37 +01:00
{
// Find the default version of the Windows 10 SDK.
2021-09-14 00:13:48 +02:00
std::string const version = this->GetWindows10SDKVersion(mf);
2019-11-11 23:01:05 +01:00
if (required && version.empty()) {
2016-07-09 11:21:54 +02:00
std::ostringstream e;
2015-11-17 17:22:37 +01:00
e << "Could not find an appropriate version of the Windows 10 SDK"
<< " installed on this machine";
2019-11-11 23:01:05 +01:00
mf->IssueMessage(MessageType::FATAL_ERROR, e.str());
2015-11-17 17:22:37 +01:00
return false;
2016-07-09 11:21:54 +02:00
}
2019-11-11 23:01:05 +01:00
this->SetWindowsTargetPlatformVersion(version, mf);
return true;
}
void cmGlobalVisualStudio14Generator::SetWindowsTargetPlatformVersion(
std::string const& version, cmMakefile* mf)
{
this->WindowsTargetPlatformVersion = version;
2018-01-26 17:06:56 +01:00
if (!cmSystemTools::VersionCompareEqual(this->WindowsTargetPlatformVersion,
this->SystemVersion)) {
std::ostringstream e;
e << "Selecting Windows SDK version " << this->WindowsTargetPlatformVersion
<< " to target Windows " << this->SystemVersion << ".";
2019-11-11 23:01:05 +01:00
mf->DisplayStatus(e.str(), -1);
2018-01-26 17:06:56 +01:00
}
2015-11-17 17:22:37 +01:00
mf->AddDefinition("CMAKE_VS_WINDOWS_TARGET_PLATFORM_VERSION",
2020-02-01 23:06:01 +01:00
this->WindowsTargetPlatformVersion);
2015-11-17 17:22:37 +01:00
}
2016-07-09 11:21:54 +02:00
bool cmGlobalVisualStudio14Generator::SelectWindowsStoreToolset(
2015-11-17 17:22:37 +01:00
std::string& toolset) const
{
2016-07-09 11:21:54 +02:00
if (cmHasLiteralPrefix(this->SystemVersion, "10.0")) {
2015-11-17 17:22:37 +01:00
if (this->IsWindowsStoreToolsetInstalled() &&
2016-07-09 11:21:54 +02:00
this->IsWindowsDesktopToolsetInstalled()) {
2015-11-17 17:22:37 +01:00
toolset = "v140";
return true;
2016-07-09 11:21:54 +02:00
} else {
2015-11-17 17:22:37 +01:00
return false;
}
2016-07-09 11:21:54 +02:00
}
return this->cmGlobalVisualStudio12Generator::SelectWindowsStoreToolset(
toolset);
2015-11-17 17:22:37 +01:00
}
2016-07-09 11:21:54 +02:00
bool cmGlobalVisualStudio14Generator::IsWindowsDesktopToolsetInstalled() const
2015-11-17 17:22:37 +01:00
{
2016-07-09 11:21:54 +02:00
const char desktop10Key[] = "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\"
"VisualStudio\\14.0\\VC\\Runtimes";
2015-11-17 17:22:37 +01:00
std::vector<std::string> vc14;
2016-07-09 11:21:54 +02:00
return cmSystemTools::GetRegistrySubKeys(desktop10Key, vc14,
cmSystemTools::KeyWOW64_32);
2015-11-17 17:22:37 +01:00
}
2016-07-09 11:21:54 +02:00
bool cmGlobalVisualStudio14Generator::IsWindowsStoreToolsetInstalled() const
2015-11-17 17:22:37 +01:00
{
const char universal10Key[] =
"HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\"
"VisualStudio\\14.0\\Setup\\Build Tools for Windows 10;SrcPath";
std::string win10SDK;
2016-07-09 11:21:54 +02:00
return cmSystemTools::ReadRegistryValue(universal10Key, win10SDK,
cmSystemTools::KeyWOW64_32);
2015-11-17 17:22:37 +01:00
}
2021-09-14 00:13:48 +02:00
std::string cmGlobalVisualStudio14Generator::GetWindows10SDKMaxVersion(
cmMakefile* mf) const
{
// if the given value is set, it can either be OFF/FALSE or a valid SDK
// string
if (cmProp value = mf->GetDefinition(
"CMAKE_VS_WINDOWS_TARGET_PLATFORM_VERSION_MAXIMUM")) {
// If the value is some off/false value, then there is NO maximum set.
if (cmIsOff(value)) {
return std::string();
}
// If the value is something else, trust that it is a valid SDK value.
else if (value) {
return *value;
}
// If value is an invalid pointer, leave result unchanged.
}
return this->GetWindows10SDKMaxVersionDefault(mf);
}
std::string cmGlobalVisualStudio14Generator::GetWindows10SDKMaxVersionDefault(
cmMakefile*) const
2018-10-28 12:09:07 +01:00
{
// The last Windows 10 SDK version that VS 2015 can target is 10.0.14393.0.
2018-11-29 20:27:00 +01:00
//
// "VS 2015 Users: The Windows 10 SDK (15063, 16299, 17134, 17763) is
// officially only supported for VS 2017." From:
// https://blogs.msdn.microsoft.com/chuckw/2018/10/02/windows-10-october-2018-update/
2018-10-28 12:09:07 +01:00
return "10.0.14393.0";
}
2016-03-13 13:35:51 +01:00
#if defined(_WIN32) && !defined(__CYGWIN__)
struct NoWindowsH
{
bool operator()(std::string const& p)
2016-07-09 11:21:54 +02:00
{
2016-03-13 13:35:51 +01:00
return !cmSystemTools::FileExists(p + "/um/windows.h", true);
2016-07-09 11:21:54 +02:00
}
2016-03-13 13:35:51 +01:00
};
2018-10-28 12:09:07 +01:00
class WindowsSDKTooRecent
{
std::string const& MaxVersion;
public:
WindowsSDKTooRecent(std::string const& maxVersion)
: MaxVersion(maxVersion)
{
}
bool operator()(std::string const& v)
{
return cmSystemTools::VersionCompareGreater(v, MaxVersion);
}
};
2016-03-13 13:35:51 +01:00
#endif
2021-09-14 00:13:48 +02:00
std::string cmGlobalVisualStudio14Generator::GetWindows10SDKVersion(
cmMakefile* mf)
2015-11-17 17:22:37 +01:00
{
#if defined(_WIN32) && !defined(__CYGWIN__)
2017-07-20 19:35:53 +02:00
std::vector<std::string> win10Roots;
{
std::string win10Root;
if (cmSystemTools::GetEnv("CMAKE_WINDOWS_KITS_10_DIR", win10Root)) {
cmSystemTools::ConvertToUnixSlashes(win10Root);
win10Roots.push_back(win10Root);
}
}
{
// This logic is taken from the vcvarsqueryregistry.bat file from VS2015
// Try HKLM and then HKCU.
std::string win10Root;
if (cmSystemTools::ReadRegistryValue(
"HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\"
"Windows Kits\\Installed Roots;KitsRoot10",
win10Root, cmSystemTools::KeyWOW64_32) ||
cmSystemTools::ReadRegistryValue(
"HKEY_CURRENT_USER\\SOFTWARE\\Microsoft\\"
"Windows Kits\\Installed Roots;KitsRoot10",
win10Root, cmSystemTools::KeyWOW64_32)) {
cmSystemTools::ConvertToUnixSlashes(win10Root);
win10Roots.push_back(win10Root);
}
}
if (win10Roots.empty()) {
2015-11-17 17:22:37 +01:00
return std::string();
2016-07-09 11:21:54 +02:00
}
2015-11-17 17:22:37 +01:00
std::vector<std::string> sdks;
// Grab the paths of the different SDKs that are installed
2018-04-23 21:13:27 +02:00
for (std::string const& i : win10Roots) {
std::string path = i + "/Include/*";
2017-07-20 19:35:53 +02:00
cmSystemTools::GlobDirs(path, sdks);
}
2016-03-13 13:35:51 +01:00
// Skip SDKs that do not contain <um/windows.h> because that indicates that
// only the UCRT MSIs were installed for them.
2020-08-30 11:54:41 +02:00
cm::erase_if(sdks, NoWindowsH());
2016-03-13 13:35:51 +01:00
2018-11-29 20:27:00 +01:00
// Only use the filename, which will be the SDK version.
for (std::string& i : sdks) {
i = cmSystemTools::GetFilenameName(i);
}
2015-11-17 17:22:37 +01:00
2021-09-14 00:13:48 +02:00
// Skip SDKs that cannot be used with our toolset, unless the user does not
// want to limit the highest supported SDK according to the Microsoft
// documentation.
std::string maxVersion = this->GetWindows10SDKMaxVersion(mf);
2018-11-29 20:27:00 +01:00
if (!maxVersion.empty()) {
2020-08-30 11:54:41 +02:00
cm::erase_if(sdks, WindowsSDKTooRecent(maxVersion));
2018-11-29 20:27:00 +01:00
}
2015-11-17 17:22:37 +01:00
2018-11-29 20:27:00 +01:00
// Sort the results to make sure we select the most recent one.
std::sort(sdks.begin(), sdks.end(), cmSystemTools::VersionCompareGreater);
2018-10-28 12:09:07 +01:00
2018-11-29 20:27:00 +01:00
// Look for a SDK exactly matching the requested target version.
for (std::string const& i : sdks) {
if (cmSystemTools::VersionCompareEqual(i, this->SystemVersion)) {
return i;
2016-07-09 11:21:54 +02:00
}
2018-11-29 20:27:00 +01:00
}
2016-03-13 13:35:51 +01:00
2018-11-29 20:27:00 +01:00
if (!sdks.empty()) {
2016-03-13 13:35:51 +01:00
// Use the latest Windows 10 SDK since the exact version is not available.
return sdks.at(0);
2016-07-09 11:21:54 +02:00
}
2015-11-17 17:22:37 +01:00
#endif
// Return an empty string
return std::string();
}