cmake/Source/cmGlobalVisualStudio12Generator.cxx

243 lines
7.7 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. */
2013-07-04 23:25:18 +03:00
#include "cmGlobalVisualStudio12Generator.h"
2016-07-09 11:21:54 +02:00
#include "cmAlgorithms.h"
2017-04-14 19:02:05 +02:00
#include "cmDocumentationEntry.h"
2013-07-04 23:25:18 +03:00
#include "cmLocalVisualStudio10Generator.h"
#include "cmMakefile.h"
2014-08-03 19:52:23 +02:00
static const char vs12generatorName[] = "Visual Studio 12 2013";
// Map generator name without year to name with year.
2015-04-27 22:25:09 +02:00
static const char* cmVS12GenName(const std::string& name, std::string& genName)
2014-08-03 19:52:23 +02:00
{
2016-07-09 11:21:54 +02:00
if (strncmp(name.c_str(), vs12generatorName,
sizeof(vs12generatorName) - 6) != 0) {
2014-08-03 19:52:23 +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(vs12generatorName) - 6;
2016-07-09 11:21:54 +02:00
if (cmHasLiteralPrefix(p, " 2013")) {
2014-08-03 19:52:23 +02:00
p += 5;
2016-07-09 11:21:54 +02:00
}
2014-08-03 19:52:23 +02:00
genName = std::string(vs12generatorName) + p;
return p;
}
2013-07-04 23:25:18 +03:00
class cmGlobalVisualStudio12Generator::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
{
2014-08-03 19:52:23 +02:00
std::string genName;
const char* p = cmVS12GenName(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 cmGlobalVisualStudio12Generator(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 cmGlobalVisualStudio12Generator(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 cmGlobalVisualStudio12Generator(cm, genName, "ARM"));
2014-08-03 19:52:23 +02:00
}
2020-08-30 11:54:41 +02:00
return std::unique_ptr<cmGlobalGenerator>();
2016-07-09 11:21:54 +02:00
}
2013-07-04 23:25:18 +03: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(vs12generatorName) + " [arch]";
2016-07-09 11:21:54 +02:00
entry.Brief = "Generates Visual Studio 2013 project files. "
"Optional [arch] can be \"Win64\" or \"ARM\".";
}
2013-07-04 23:25:18 +03: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;
2014-08-03 19:52:23 +02:00
names.push_back(vs12generatorName);
2019-11-11 23:01:05 +01:00
return names;
}
std::vector<std::string> GetGeneratorNamesWithPlatform() const override
{
std::vector<std::string> names;
2014-08-03 19:52:23 +02:00
names.push_back(vs12generatorName + std::string(" ARM"));
names.push_back(vs12generatorName + 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"; }
2013-07-04 23:25:18 +03:00
};
2020-08-30 11:54:41 +02:00
std::unique_ptr<cmGlobalGeneratorFactory>
cmGlobalVisualStudio12Generator::NewFactory()
2013-07-04 23:25:18 +03:00
{
2020-08-30 11:54:41 +02:00
return std::unique_ptr<cmGlobalGeneratorFactory>(new Factory);
2013-07-04 23:25:18 +03:00
}
2016-07-09 11:21:54 +02:00
cmGlobalVisualStudio12Generator::cmGlobalVisualStudio12Generator(
2019-11-11 23:01:05 +01:00
cmake* cm, const std::string& name,
std::string const& platformInGeneratorName)
: cmGlobalVisualStudio11Generator(cm, name, platformInGeneratorName)
2013-07-04 23:25:18 +03:00
{
std::string vc12Express;
this->ExpressEdition = cmSystemTools::ReadRegistryValue(
"HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VCExpress\\12.0\\Setup\\VC;"
2016-07-09 11:21:54 +02:00
"ProductDir",
vc12Express, cmSystemTools::KeyWOW64_32);
2015-04-27 22:25:09 +02:00
this->DefaultPlatformToolset = "v120";
2019-11-11 23:01:05 +01:00
this->DefaultCLFlagTableName = "v12";
this->DefaultCSharpFlagTableName = "v12";
this->DefaultLibFlagTableName = "v12";
this->DefaultLinkFlagTableName = "v12";
this->DefaultMasmFlagTableName = "v12";
this->DefaultRCFlagTableName = "v12";
2015-08-17 11:37:30 +02:00
this->Version = VS12;
2013-07-04 23:25:18 +03:00
}
2016-07-09 11:21:54 +02:00
bool cmGlobalVisualStudio12Generator::MatchesGeneratorName(
const std::string& name) const
2014-08-03 19:52:23 +02:00
{
std::string genName;
2016-07-09 11:21:54 +02:00
if (cmVS12GenName(name, genName)) {
2014-08-03 19:52:23 +02:00
return genName == this->GetName();
2016-07-09 11:21:54 +02:00
}
2014-08-03 19:52:23 +02:00
return false;
}
2017-07-20 19:35:53 +02:00
bool cmGlobalVisualStudio12Generator::ProcessGeneratorToolsetField(
std::string const& key, std::string const& value)
2017-04-14 19:02:05 +02:00
{
2019-11-11 23:01:05 +01:00
if (key == "host" && (value == "x64" || value == "x86")) {
this->GeneratorToolsetHostArchitecture = value;
2017-07-20 19:35:53 +02:00
return true;
2017-04-14 19:02:05 +02:00
}
2017-07-20 19:35:53 +02:00
return this->cmGlobalVisualStudio11Generator::ProcessGeneratorToolsetField(
key, value);
2017-04-14 19:02:05 +02:00
}
2015-04-27 22:25:09 +02:00
bool cmGlobalVisualStudio12Generator::InitializeWindowsPhone(cmMakefile* mf)
{
2016-07-09 11:21:54 +02:00
if (!this->SelectWindowsPhoneToolset(this->DefaultPlatformToolset)) {
2015-04-27 22:25:09 +02:00
std::ostringstream e;
2016-07-09 11:21:54 +02:00
if (this->DefaultPlatformToolset.empty()) {
2018-08-09 18:06:22 +02:00
e << this->GetName()
<< " supports Windows Phone '8.0' and '8.1', but "
"not '"
2016-07-09 11:21:54 +02:00
<< this->SystemVersion << "'. Check CMAKE_SYSTEM_VERSION.";
} else {
2015-04-27 22:25:09 +02:00
e << "A Windows Phone component with CMake requires both the Windows "
<< "Desktop SDK as well as the Windows Phone '" << 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-04-27 22:25:09 +02:00
return false;
2016-07-09 11:21:54 +02:00
}
2015-04-27 22:25:09 +02:00
return true;
}
bool cmGlobalVisualStudio12Generator::InitializeWindowsStore(cmMakefile* mf)
{
2016-07-09 11:21:54 +02:00
if (!this->SelectWindowsStoreToolset(this->DefaultPlatformToolset)) {
2015-04-27 22:25:09 +02:00
std::ostringstream e;
2016-07-09 11:21:54 +02:00
if (this->DefaultPlatformToolset.empty()) {
2018-08-09 18:06:22 +02:00
e << this->GetName()
<< " supports Windows Store '8.0' and '8.1', but "
"not '"
2016-07-09 11:21:54 +02:00
<< this->SystemVersion << "'. Check CMAKE_SYSTEM_VERSION.";
} else {
2015-04-27 22:25:09 +02: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-04-27 22:25:09 +02:00
return false;
2016-07-09 11:21:54 +02:00
}
2015-04-27 22:25:09 +02:00
return true;
}
2016-07-09 11:21:54 +02:00
bool cmGlobalVisualStudio12Generator::SelectWindowsPhoneToolset(
2015-04-27 22:25:09 +02:00
std::string& toolset) const
{
2016-07-09 11:21:54 +02:00
if (this->SystemVersion == "8.1") {
2015-04-27 22:25:09 +02:00
if (this->IsWindowsPhoneToolsetInstalled() &&
2016-07-09 11:21:54 +02:00
this->IsWindowsDesktopToolsetInstalled()) {
2015-04-27 22:25:09 +02:00
toolset = "v120_wp81";
return true;
2016-07-09 11:21:54 +02:00
} else {
2015-04-27 22:25:09 +02:00
return false;
}
2016-07-09 11:21:54 +02:00
}
return this->cmGlobalVisualStudio11Generator::SelectWindowsPhoneToolset(
toolset);
2015-04-27 22:25:09 +02:00
}
2016-07-09 11:21:54 +02:00
bool cmGlobalVisualStudio12Generator::SelectWindowsStoreToolset(
2015-04-27 22:25:09 +02:00
std::string& toolset) const
{
2016-07-09 11:21:54 +02:00
if (this->SystemVersion == "8.1") {
if (this->IsWindowsStoreToolsetInstalled() &&
this->IsWindowsDesktopToolsetInstalled()) {
2015-04-27 22:25:09 +02:00
toolset = "v120";
return true;
2016-07-09 11:21:54 +02:00
} else {
2015-04-27 22:25:09 +02:00
return false;
}
2016-07-09 11:21:54 +02:00
}
return this->cmGlobalVisualStudio11Generator::SelectWindowsStoreToolset(
toolset);
2015-04-27 22:25:09 +02:00
}
2016-07-09 11:21:54 +02:00
bool cmGlobalVisualStudio12Generator::IsWindowsDesktopToolsetInstalled() const
2015-04-27 22:25:09 +02:00
{
2016-07-09 11:21:54 +02:00
const char desktop81Key[] = "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\"
"VisualStudio\\12.0\\VC\\LibraryDesktop";
2015-04-27 22:25:09 +02:00
std::vector<std::string> subkeys;
2016-07-09 11:21:54 +02:00
return cmSystemTools::GetRegistrySubKeys(desktop81Key, subkeys,
2015-04-27 22:25:09 +02:00
cmSystemTools::KeyWOW64_32);
}
2016-07-09 11:21:54 +02:00
bool cmGlobalVisualStudio12Generator::IsWindowsPhoneToolsetInstalled() const
2015-04-27 22:25:09 +02:00
{
const char wp81Key[] =
"HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\"
"Microsoft SDKs\\WindowsPhone\\v8.1\\Install Path;Install Path";
std::string path;
2016-07-09 11:21:54 +02:00
cmSystemTools::ReadRegistryValue(wp81Key, path, cmSystemTools::KeyWOW64_32);
2015-04-27 22:25:09 +02:00
return !path.empty();
}
2016-07-09 11:21:54 +02:00
bool cmGlobalVisualStudio12Generator::IsWindowsStoreToolsetInstalled() const
2015-04-27 22:25:09 +02:00
{
2016-07-09 11:21:54 +02:00
const char win81Key[] = "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\"
"VisualStudio\\12.0\\VC\\Libraries\\Core\\Arm";
2015-04-27 22:25:09 +02:00
std::vector<std::string> subkeys;
2016-07-09 11:21:54 +02:00
return cmSystemTools::GetRegistrySubKeys(win81Key, subkeys,
2015-04-27 22:25:09 +02:00
cmSystemTools::KeyWOW64_32);
}