cmake/Source/cmGlobalVisualStudio14Generator.cxx

293 lines
9.3 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
#include "cmAlgorithms.h"
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"
2017-04-14 19:02:05 +02:00
#include "cmVS140CLFlagTable.h"
#include "cmVS140CSharpFlagTable.h"
2017-07-20 19:35:53 +02:00
#include "cmVS140LinkFlagTable.h"
2017-04-14 19:02:05 +02:00
#include "cmVS14LibFlagTable.h"
#include "cmVS14MASMFlagTable.h"
#include "cmVS14RCFlagTable.h"
2015-04-27 22:25:09 +02:00
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:
2016-10-30 18:24:19 +01:00
cmGlobalGenerator* CreateGlobalGenerator(const std::string& name,
2018-01-26 17:06:56 +01:00
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) {
return 0;
}
if (!*p) {
2015-08-17 11:37:30 +02:00
return new cmGlobalVisualStudio14Generator(cm, genName, "");
2016-07-09 11:21:54 +02:00
}
if (*p++ != ' ') {
return 0;
}
if (strcmp(p, "Win64") == 0) {
2015-08-17 11:37:30 +02:00
return new cmGlobalVisualStudio14Generator(cm, genName, "x64");
2016-07-09 11:21:54 +02:00
}
if (strcmp(p, "ARM") == 0) {
2015-08-17 11:37:30 +02:00
return new cmGlobalVisualStudio14Generator(cm, genName, "ARM");
2015-04-27 22:25:09 +02:00
}
2016-07-09 11:21:54 +02:00
return 0;
}
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
2018-01-26 17:06:56 +01:00
void GetGenerators(std::vector<std::string>& names) const override
2016-07-09 11:21:54 +02:00
{
2015-04-27 22:25:09 +02:00
names.push_back(vs14generatorName);
names.push_back(vs14generatorName + std::string(" ARM"));
names.push_back(vs14generatorName + std::string(" Win64"));
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; }
2015-04-27 22:25:09 +02:00
};
cmGlobalGeneratorFactory* cmGlobalVisualStudio14Generator::NewFactory()
{
return new Factory;
}
2016-07-09 11:21:54 +02:00
cmGlobalVisualStudio14Generator::cmGlobalVisualStudio14Generator(
cmake* cm, const std::string& name, const std::string& platformName)
2015-08-17 11:37:30 +02:00
: cmGlobalVisualStudio12Generator(cm, name, platformName)
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";
2017-04-14 19:02:05 +02:00
this->DefaultClFlagTable = cmVS140CLFlagTable;
this->DefaultCSharpFlagTable = cmVS140CSharpFlagTable;
this->DefaultLibFlagTable = cmVS14LibFlagTable;
2017-07-20 19:35:53 +02:00
this->DefaultLinkFlagTable = cmVS140LinkFlagTable;
2017-04-14 19:02:05 +02:00
this->DefaultMasmFlagTable = cmVS14MASMFlagTable;
this->DefaultRcFlagTable = cmVS14RCFlagTable;
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
}
2015-11-17 17:22:37 +01:00
mf->IssueMessage(cmake::FATAL_ERROR, e.str());
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;
}
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.
this->WindowsTargetPlatformVersion = this->GetWindows10SDKVersion();
2016-07-09 11:21:54 +02:00
if (required && this->WindowsTargetPlatformVersion.empty()) {
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";
mf->IssueMessage(cmake::FATAL_ERROR, e.str());
return false;
2016-07-09 11:21:54 +02:00
}
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 << ".";
mf->DisplayStatus(e.str().c_str(), -1);
}
2015-11-17 17:22:37 +01:00
mf->AddDefinition("CMAKE_VS_WINDOWS_TARGET_PLATFORM_VERSION",
this->WindowsTargetPlatformVersion.c_str());
return true;
}
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
}
2015-04-27 22:25:09 +02:00
void cmGlobalVisualStudio14Generator::WriteSLNHeader(std::ostream& fout)
{
// Visual Studio 14 writes .sln format 12.00
fout << "Microsoft Visual Studio Solution File, Format Version 12.00\n";
2016-07-09 11:21:54 +02:00
if (this->ExpressEdition) {
2015-04-27 22:25:09 +02:00
fout << "# Visual Studio Express 14 for Windows Desktop\n";
2016-07-09 11:21:54 +02:00
} else {
2015-04-27 22:25:09 +02:00
fout << "# Visual Studio 14\n";
2016-07-09 11:21:54 +02:00
}
2015-04-27 22:25:09 +02:00
}
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
}
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
};
#endif
2015-11-17 17:22:37 +01:00
std::string cmGlobalVisualStudio14Generator::GetWindows10SDKVersion()
{
#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.
2017-07-20 19:35:53 +02:00
cmEraseIf(sdks, NoWindowsH());
2016-03-13 13:35:51 +01:00
2016-07-09 11:21:54 +02:00
if (!sdks.empty()) {
2015-11-17 17:22:37 +01:00
// Only use the filename, which will be the SDK version.
2018-04-23 21:13:27 +02:00
for (std::string& i : sdks) {
i = cmSystemTools::GetFilenameName(i);
2016-07-09 11:21:54 +02:00
}
2015-11-17 17:22:37 +01:00
2016-03-13 13:35:51 +01:00
// Sort the results to make sure we select the most recent one.
2015-11-17 17:22:37 +01:00
std::sort(sdks.begin(), sdks.end(), cmSystemTools::VersionCompareGreater);
2016-03-13 13:35:51 +01:00
// Look for a SDK exactly matching the requested target version.
2018-04-23 21:13:27 +02:00
for (std::string const& i : sdks) {
if (cmSystemTools::VersionCompareEqual(i, this->SystemVersion)) {
return i;
2015-11-17 17:22:37 +01:00
}
2016-07-09 11:21:54 +02:00
}
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();
}