2011-09-23 17:07:40 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2011 Kitware, Inc., Insight Software Consortium
|
|
|
|
|
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
|
|
|
|
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
|
|
|
#include "cmGlobalVisualStudio11Generator.h"
|
2016-04-29 16:40:20 +03:00
|
|
|
|
2016-04-29 17:53:13 +03:00
|
|
|
#include "cmAlgorithms.h"
|
2011-11-14 18:42:51 +04:00
|
|
|
#include "cmLocalVisualStudio10Generator.h"
|
2011-09-23 17:07:40 +04:00
|
|
|
#include "cmMakefile.h"
|
|
|
|
|
2013-10-28 18:08:11 +04:00
|
|
|
static const char vs11generatorName[] = "Visual Studio 11 2012";
|
|
|
|
|
|
|
|
// Map generator name without year to name with year.
|
2014-02-25 02:36:27 +04:00
|
|
|
static const char* cmVS11GenName(const std::string& name, std::string& genName)
|
2013-10-28 18:08:11 +04:00
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
if (strncmp(name.c_str(), vs11generatorName,
|
|
|
|
sizeof(vs11generatorName) - 6) != 0) {
|
2013-10-28 18:08:11 +04:00
|
|
|
return 0;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2014-02-25 02:36:27 +04:00
|
|
|
const char* p = name.c_str() + sizeof(vs11generatorName) - 6;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (cmHasLiteralPrefix(p, " 2012")) {
|
2013-10-28 18:08:11 +04:00
|
|
|
p += 5;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2013-10-28 18:08:11 +04:00
|
|
|
genName = std::string(vs11generatorName) + p;
|
|
|
|
return p;
|
|
|
|
}
|
2012-11-19 22:05:55 +04:00
|
|
|
|
|
|
|
class cmGlobalVisualStudio11Generator::Factory
|
|
|
|
: public cmGlobalGeneratorFactory
|
|
|
|
{
|
|
|
|
public:
|
2016-07-01 11:11:17 +03:00
|
|
|
cmGlobalGenerator* CreateGlobalGenerator(const std::string& name,
|
|
|
|
cmake* cm) const CM_OVERRIDE
|
2016-05-16 17:34:04 +03:00
|
|
|
{
|
2013-10-28 18:08:11 +04:00
|
|
|
std::string genName;
|
|
|
|
const char* p = cmVS11GenName(name, genName);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!p) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (!*p) {
|
2015-05-24 12:31:14 +03:00
|
|
|
return new cmGlobalVisualStudio11Generator(cm, genName, "");
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (*p++ != ' ') {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (strcmp(p, "Win64") == 0) {
|
2015-05-24 12:31:14 +03:00
|
|
|
return new cmGlobalVisualStudio11Generator(cm, genName, "x64");
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (strcmp(p, "ARM") == 0) {
|
2015-05-24 12:31:14 +03:00
|
|
|
return new cmGlobalVisualStudio11Generator(cm, genName, "ARM");
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2013-08-04 22:15:35 +04:00
|
|
|
|
|
|
|
std::set<std::string> installedSDKs =
|
|
|
|
cmGlobalVisualStudio11Generator::GetInstalledWindowsCESDKs();
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (installedSDKs.find(p) == installedSDKs.end()) {
|
2013-08-04 22:15:35 +04:00
|
|
|
return 0;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2013-08-04 22:15:35 +04:00
|
|
|
|
|
|
|
cmGlobalVisualStudio11Generator* ret =
|
2015-05-24 12:31:14 +03:00
|
|
|
new cmGlobalVisualStudio11Generator(cm, name, p);
|
2013-08-04 22:15:35 +04:00
|
|
|
ret->WindowsCEVersion = "8.00";
|
|
|
|
return ret;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2012-11-19 22:05:55 +04:00
|
|
|
|
2016-07-01 11:11:17 +03:00
|
|
|
void GetDocumentation(cmDocumentationEntry& entry) const CM_OVERRIDE
|
2016-05-16 17:34:04 +03:00
|
|
|
{
|
2015-04-07 23:33:05 +03:00
|
|
|
entry.Name = std::string(vs11generatorName) + " [arch]";
|
2016-05-16 17:34:04 +03:00
|
|
|
entry.Brief = "Generates Visual Studio 2012 project files. "
|
|
|
|
"Optional [arch] can be \"Win64\" or \"ARM\".";
|
|
|
|
}
|
2012-11-19 22:05:55 +04:00
|
|
|
|
2016-07-01 11:11:17 +03:00
|
|
|
void GetGenerators(std::vector<std::string>& names) const CM_OVERRIDE
|
2016-05-16 17:34:04 +03:00
|
|
|
{
|
2013-08-04 22:15:35 +04:00
|
|
|
names.push_back(vs11generatorName);
|
|
|
|
names.push_back(vs11generatorName + std::string(" ARM"));
|
|
|
|
names.push_back(vs11generatorName + std::string(" Win64"));
|
|
|
|
|
|
|
|
std::set<std::string> installedSDKs =
|
|
|
|
cmGlobalVisualStudio11Generator::GetInstalledWindowsCESDKs();
|
2016-05-16 17:34:04 +03:00
|
|
|
for (std::set<std::string>::const_iterator i = installedSDKs.begin();
|
|
|
|
i != installedSDKs.end(); ++i) {
|
2013-10-28 18:08:11 +04:00
|
|
|
names.push_back(std::string(vs11generatorName) + " " + *i);
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2015-02-15 22:17:54 +03:00
|
|
|
|
2016-07-01 11:11:17 +03:00
|
|
|
bool SupportsToolset() const CM_OVERRIDE { return true; }
|
2016-07-11 16:44:37 +03:00
|
|
|
bool SupportsPlatform() const CM_OVERRIDE { return true; }
|
2012-11-19 22:05:55 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
cmGlobalGeneratorFactory* cmGlobalVisualStudio11Generator::NewFactory()
|
|
|
|
{
|
|
|
|
return new Factory;
|
|
|
|
}
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
cmGlobalVisualStudio11Generator::cmGlobalVisualStudio11Generator(
|
|
|
|
cmake* cm, const std::string& name, const std::string& platformName)
|
2015-05-24 12:31:14 +03:00
|
|
|
: cmGlobalVisualStudio10Generator(cm, name, platformName)
|
2011-09-23 17:07:40 +04:00
|
|
|
{
|
2012-09-18 19:39:34 +04:00
|
|
|
std::string vc11Express;
|
|
|
|
this->ExpressEdition = cmSystemTools::ReadRegistryValue(
|
|
|
|
"HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VCExpress\\11.0\\Setup\\VC;"
|
2016-05-16 17:34:04 +03:00
|
|
|
"ProductDir",
|
|
|
|
vc11Express, cmSystemTools::KeyWOW64_32);
|
2014-06-04 21:09:35 +04:00
|
|
|
this->DefaultPlatformToolset = "v110";
|
2015-05-17 12:33:09 +03:00
|
|
|
this->Version = VS11;
|
2011-09-23 17:07:40 +04:00
|
|
|
}
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
bool cmGlobalVisualStudio11Generator::MatchesGeneratorName(
|
|
|
|
const std::string& name) const
|
2013-10-28 18:08:11 +04:00
|
|
|
{
|
|
|
|
std::string genName;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (cmVS11GenName(name, genName)) {
|
2013-10-28 18:08:11 +04:00
|
|
|
return genName == this->GetName();
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2013-10-28 18:08:11 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-07-29 00:15:43 +04:00
|
|
|
bool cmGlobalVisualStudio11Generator::InitializeWindowsPhone(cmMakefile* mf)
|
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!this->SelectWindowsPhoneToolset(this->DefaultPlatformToolset)) {
|
2015-01-05 22:31:31 +03:00
|
|
|
std::ostringstream e;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->DefaultPlatformToolset.empty()) {
|
2014-11-13 22:47:01 +03:00
|
|
|
e << this->GetName() << " supports Windows Phone '8.0', but not '"
|
|
|
|
<< this->SystemVersion << "'. Check CMAKE_SYSTEM_VERSION.";
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
2014-11-13 22:47:01 +03: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-05-16 17:34:04 +03:00
|
|
|
}
|
2014-07-29 00:15:43 +04:00
|
|
|
mf->IssueMessage(cmake::FATAL_ERROR, e.str());
|
|
|
|
return false;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2014-07-29 00:15:43 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cmGlobalVisualStudio11Generator::InitializeWindowsStore(cmMakefile* mf)
|
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!this->SelectWindowsStoreToolset(this->DefaultPlatformToolset)) {
|
2015-01-05 22:31:31 +03:00
|
|
|
std::ostringstream e;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->DefaultPlatformToolset.empty()) {
|
2014-11-13 22:47:01 +03:00
|
|
|
e << this->GetName() << " supports Windows Store '8.0', but not '"
|
|
|
|
<< this->SystemVersion << "'. Check CMAKE_SYSTEM_VERSION.";
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
2014-11-13 22:47:01 +03: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-05-16 17:34:04 +03:00
|
|
|
}
|
2014-07-29 00:15:43 +04:00
|
|
|
mf->IssueMessage(cmake::FATAL_ERROR, e.str());
|
|
|
|
return false;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2014-07-29 00:15:43 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
bool cmGlobalVisualStudio11Generator::SelectWindowsPhoneToolset(
|
2014-11-13 22:47:01 +03:00
|
|
|
std::string& toolset) const
|
2014-07-29 00:15:43 +04:00
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->SystemVersion == "8.0") {
|
2014-11-13 22:47:01 +03:00
|
|
|
if (this->IsWindowsPhoneToolsetInstalled() &&
|
2016-05-16 17:34:04 +03:00
|
|
|
this->IsWindowsDesktopToolsetInstalled()) {
|
2014-11-13 22:47:01 +03:00
|
|
|
toolset = "v110_wp80";
|
|
|
|
return true;
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
2014-11-13 22:47:01 +03:00
|
|
|
return false;
|
2014-07-29 00:15:43 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
return this->cmGlobalVisualStudio10Generator::SelectWindowsPhoneToolset(
|
|
|
|
toolset);
|
2014-07-29 00:15:43 +04:00
|
|
|
}
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
bool cmGlobalVisualStudio11Generator::SelectWindowsStoreToolset(
|
2014-11-13 22:47:01 +03:00
|
|
|
std::string& toolset) const
|
2014-07-29 00:15:43 +04:00
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->SystemVersion == "8.0") {
|
|
|
|
if (this->IsWindowsStoreToolsetInstalled() &&
|
|
|
|
this->IsWindowsDesktopToolsetInstalled()) {
|
2014-11-13 22:47:01 +03:00
|
|
|
toolset = "v110";
|
|
|
|
return true;
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
2014-11-13 22:47:01 +03:00
|
|
|
return false;
|
2014-07-29 00:15:43 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
return this->cmGlobalVisualStudio10Generator::SelectWindowsStoreToolset(
|
|
|
|
toolset);
|
2014-07-29 00:15:43 +04:00
|
|
|
}
|
|
|
|
|
2011-09-23 17:07:40 +04:00
|
|
|
void cmGlobalVisualStudio11Generator::WriteSLNHeader(std::ostream& fout)
|
|
|
|
{
|
|
|
|
fout << "Microsoft Visual Studio Solution File, Format Version 12.00\n";
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->ExpressEdition) {
|
2013-03-25 21:30:46 +04:00
|
|
|
fout << "# Visual Studio Express 2012 for Windows Desktop\n";
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
2013-03-25 21:30:46 +04:00
|
|
|
fout << "# Visual Studio 2012\n";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2011-09-23 17:07:40 +04:00
|
|
|
}
|
|
|
|
|
2012-12-03 22:53:43 +04:00
|
|
|
bool cmGlobalVisualStudio11Generator::UseFolderProperty()
|
|
|
|
{
|
2016-04-26 15:22:27 +03:00
|
|
|
// Intentionally skip up to the top-level class implementation.
|
|
|
|
// Folders are not supported by the Express editions in VS10 and earlier,
|
|
|
|
// but they are in VS11 Express and above.
|
|
|
|
return cmGlobalGenerator::UseFolderProperty();
|
2012-12-03 22:53:43 +04:00
|
|
|
}
|
2013-08-04 22:15:35 +04:00
|
|
|
|
|
|
|
std::set<std::string>
|
|
|
|
cmGlobalVisualStudio11Generator::GetInstalledWindowsCESDKs()
|
|
|
|
{
|
|
|
|
const char sdksKey[] = "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\"
|
|
|
|
"Windows CE Tools\\SDKs";
|
|
|
|
|
|
|
|
std::vector<std::string> subkeys;
|
|
|
|
cmSystemTools::GetRegistrySubKeys(sdksKey, subkeys,
|
|
|
|
cmSystemTools::KeyWOW64_32);
|
|
|
|
|
|
|
|
std::set<std::string> ret;
|
2016-05-16 17:34:04 +03:00
|
|
|
for (std::vector<std::string>::const_iterator i = subkeys.begin();
|
|
|
|
i != subkeys.end(); ++i) {
|
2013-08-04 22:15:35 +04:00
|
|
|
std::string key = sdksKey;
|
|
|
|
key += '\\';
|
|
|
|
key += *i;
|
|
|
|
key += ';';
|
|
|
|
|
|
|
|
std::string path;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (cmSystemTools::ReadRegistryValue(key.c_str(), path,
|
|
|
|
cmSystemTools::KeyWOW64_32) &&
|
|
|
|
!path.empty()) {
|
2013-08-04 22:15:35 +04:00
|
|
|
ret.insert(*i);
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2013-08-04 22:15:35 +04:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
2014-07-29 19:43:19 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
bool cmGlobalVisualStudio11Generator::NeedsDeploy(
|
|
|
|
cmState::TargetType type) const
|
2014-07-29 19:43:19 +04:00
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
if ((type == cmState::EXECUTABLE || type == cmState::SHARED_LIBRARY) &&
|
|
|
|
(this->SystemIsWindowsPhone || this->SystemIsWindowsStore)) {
|
2014-07-29 19:43:19 +04:00
|
|
|
return true;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2014-07-29 19:43:19 +04:00
|
|
|
return cmGlobalVisualStudio10Generator::NeedsDeploy(type);
|
|
|
|
}
|
2014-11-13 22:47:01 +03:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
bool cmGlobalVisualStudio11Generator::IsWindowsDesktopToolsetInstalled() const
|
2014-11-13 22:47:01 +03:00
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
const char desktop80Key[] = "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\"
|
|
|
|
"VisualStudio\\11.0\\VC\\Libraries\\Extended";
|
2014-11-13 22:47:01 +03:00
|
|
|
const char VS2012DesktopExpressKey[] =
|
|
|
|
"HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\"
|
|
|
|
"WDExpress\\11.0;InstallDir";
|
|
|
|
|
|
|
|
std::vector<std::string> subkeys;
|
|
|
|
std::string path;
|
2016-05-16 17:34:04 +03:00
|
|
|
return cmSystemTools::ReadRegistryValue(VS2012DesktopExpressKey, path,
|
2014-11-13 22:47:01 +03:00
|
|
|
cmSystemTools::KeyWOW64_32) ||
|
2016-05-16 17:34:04 +03:00
|
|
|
cmSystemTools::GetRegistrySubKeys(desktop80Key, subkeys,
|
|
|
|
cmSystemTools::KeyWOW64_32);
|
2014-11-13 22:47:01 +03:00
|
|
|
}
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
bool cmGlobalVisualStudio11Generator::IsWindowsPhoneToolsetInstalled() const
|
2014-11-13 22:47:01 +03:00
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
const char wp80Key[] = "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\"
|
|
|
|
"Microsoft SDKs\\WindowsPhone\\v8.0\\"
|
|
|
|
"Install Path;Install Path";
|
2014-11-13 22:47:01 +03:00
|
|
|
|
|
|
|
std::string path;
|
2016-05-16 17:34:04 +03:00
|
|
|
cmSystemTools::ReadRegistryValue(wp80Key, path, cmSystemTools::KeyWOW64_32);
|
2014-11-13 22:47:01 +03:00
|
|
|
return !path.empty();
|
|
|
|
}
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
bool cmGlobalVisualStudio11Generator::IsWindowsStoreToolsetInstalled() const
|
2014-11-13 22:47:01 +03:00
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
const char win80Key[] = "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\"
|
|
|
|
"VisualStudio\\11.0\\VC\\Libraries\\Core\\Arm";
|
2014-11-13 22:47:01 +03:00
|
|
|
|
|
|
|
std::vector<std::string> subkeys;
|
2016-05-16 17:34:04 +03:00
|
|
|
return cmSystemTools::GetRegistrySubKeys(win80Key, subkeys,
|
2014-11-13 22:47:01 +03:00
|
|
|
cmSystemTools::KeyWOW64_32);
|
|
|
|
}
|