cmake/Source/cmGlobalVisualStudio7Generator.cxx

755 lines
26 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. */
#include "cmGlobalVisualStudio7Generator.h"
2016-07-09 11:21:54 +02:00
#include "cmGeneratedFileStream.h"
2016-10-30 18:24:19 +01:00
#include "cmGeneratorTarget.h"
#include "cmLocalVisualStudio7Generator.h"
#include "cmMakefile.h"
2017-04-14 19:02:05 +02:00
#include "cmState.h"
2015-11-17 17:22:37 +01:00
#include "cmUuid.h"
#include "cmake.h"
2017-07-20 19:35:53 +02:00
#include "cmsys/Encoding.hxx"
2016-07-09 11:21:54 +02:00
#include <assert.h>
2017-07-20 19:35:53 +02:00
#include <vector>
#include <windows.h>
2016-07-09 11:21:54 +02:00
static cmVS7FlagTable cmVS7ExtraFlagTable[] = {
2015-08-17 11:37:30 +02:00
// Precompiled header and related options. Note that the
// UsePrecompiledHeader entries are marked as "Continue" so that the
// corresponding PrecompiledHeaderThrough entry can be found.
2016-07-09 11:21:54 +02:00
{ "UsePrecompiledHeader", "YX", "Automatically Generate", "2",
cmVS7FlagTable::UserValueIgnored | cmVS7FlagTable::Continue },
{ "PrecompiledHeaderThrough", "YX", "Precompiled Header Name", "",
cmVS7FlagTable::UserValueRequired },
{ "UsePrecompiledHeader", "Yu", "Use Precompiled Header", "3",
cmVS7FlagTable::UserValueIgnored | cmVS7FlagTable::Continue },
{ "PrecompiledHeaderThrough", "Yu", "Precompiled Header Name", "",
cmVS7FlagTable::UserValueRequired },
{ "WholeProgramOptimization", "LTCG", "WholeProgramOptimization", "true",
0 },
2015-08-17 11:37:30 +02:00
// Exception handling mode. If no entries match, it will be FALSE.
2016-07-09 11:21:54 +02:00
{ "ExceptionHandling", "GX", "enable c++ exceptions", "true", 0 },
{ "ExceptionHandling", "EHsc", "enable c++ exceptions", "true", 0 },
2015-08-17 11:37:30 +02:00
// The EHa option does not have an IDE setting. Let it go to false,
// and have EHa passed on the command line by leaving out the table
// entry.
2016-07-09 11:21:54 +02:00
{ 0, 0, 0, 0, 0 }
2015-08-17 11:37:30 +02:00
};
2016-07-09 11:21:54 +02:00
cmGlobalVisualStudio7Generator::cmGlobalVisualStudio7Generator(
cmake* cm, const std::string& platformName)
2015-08-17 11:37:30 +02:00
: cmGlobalVisualStudioGenerator(cm)
{
2014-08-03 19:52:23 +02:00
this->IntelProjectVersion = 0;
this->DevEnvCommandInitialized = false;
2015-04-27 22:25:09 +02:00
this->MasmEnabled = false;
2017-07-20 19:35:53 +02:00
this->NasmEnabled = false;
2013-11-03 12:27:13 +02:00
2016-07-09 11:21:54 +02:00
if (platformName.empty()) {
2015-04-27 22:25:09 +02:00
this->DefaultPlatformName = "Win32";
2016-07-09 11:21:54 +02:00
} else {
2015-04-27 22:25:09 +02:00
this->DefaultPlatformName = platformName;
2016-07-09 11:21:54 +02:00
}
2015-08-17 11:37:30 +02:00
this->ExtraFlagTable = cmVS7ExtraFlagTable;
}
2014-08-03 19:52:23 +02:00
cmGlobalVisualStudio7Generator::~cmGlobalVisualStudio7Generator()
{
free(this->IntelProjectVersion);
}
// Package GUID of Intel Visual Fortran plugin to VS IDE
#define CM_INTEL_PLUGIN_GUID "{B68A201D-CB9B-47AF-A52F-7EEC72E217E4}"
const char* cmGlobalVisualStudio7Generator::GetIntelProjectVersion()
{
2016-07-09 11:21:54 +02:00
if (!this->IntelProjectVersion) {
2014-08-03 19:52:23 +02:00
// Compute the version of the Intel plugin to the VS IDE.
// If the key does not exist then use a default guess.
std::string intelVersion;
std::string vskey = this->GetRegistryBase();
vskey += "\\Packages\\" CM_INTEL_PLUGIN_GUID ";ProductVersion";
cmSystemTools::ReadRegistryValue(vskey.c_str(), intelVersion,
cmSystemTools::KeyWOW64_32);
unsigned int intelVersionNumber = ~0u;
sscanf(intelVersion.c_str(), "%u", &intelVersionNumber);
2016-07-09 11:21:54 +02:00
if (intelVersionNumber >= 11) {
2014-08-03 19:52:23 +02:00
// Default to latest known project file version.
intelVersion = "11.0";
2016-07-09 11:21:54 +02:00
} else if (intelVersionNumber == 10) {
2014-08-03 19:52:23 +02:00
// Version 10.x actually uses 9.10 in project files!
intelVersion = "9.10";
2016-07-09 11:21:54 +02:00
} else {
2014-08-03 19:52:23 +02:00
// Version <= 9: use ProductVersion from registry.
}
2016-07-09 11:21:54 +02:00
this->IntelProjectVersion = strdup(intelVersion.c_str());
}
2014-08-03 19:52:23 +02:00
return this->IntelProjectVersion;
}
2016-07-09 11:21:54 +02:00
void cmGlobalVisualStudio7Generator::EnableLanguage(
std::vector<std::string> const& lang, cmMakefile* mf, bool optional)
{
mf->AddDefinition("CMAKE_GENERATOR_RC", "rc");
mf->AddDefinition("CMAKE_GENERATOR_NO_COMPILER_ENV", "1");
2016-07-09 11:21:54 +02:00
if (!mf->GetDefinition("CMAKE_CONFIGURATION_TYPES")) {
2013-11-03 12:27:13 +02:00
mf->AddCacheDefinition(
2016-07-09 11:21:54 +02:00
"CMAKE_CONFIGURATION_TYPES", "Debug;Release;MinSizeRel;RelWithDebInfo",
2013-11-03 12:27:13 +02:00
"Semicolon separated list of supported configuration types, "
"only supports Debug, Release, MinSizeRel, and RelWithDebInfo, "
"anything else will be ignored.",
2017-04-14 19:02:05 +02:00
cmStateEnums::STRING);
2016-07-09 11:21:54 +02:00
}
2013-03-16 19:13:01 +02:00
// Create list of configurations requested by user's cache, if any.
this->cmGlobalGenerator::EnableLanguage(lang, mf, optional);
2013-03-16 19:13:01 +02:00
// if this environment variable is set, then copy it to
2013-03-16 19:13:01 +02:00
// a static cache entry. It will be used by
// cmLocalGenerator::ConstructScript, to add an extra PATH
// to all custom commands. This is because the VS IDE
// does not use the environment it is run in, and this allows
// for running commands and using dll's that the IDE environment
// does not know about.
2016-10-30 18:24:19 +01:00
std::string extraPath;
if (cmSystemTools::GetEnv("CMAKE_MSVCIDE_RUN_PATH", extraPath)) {
mf->AddCacheDefinition("CMAKE_MSVCIDE_RUN_PATH", extraPath.c_str(),
2016-07-09 11:21:54 +02:00
"Saved environment variable CMAKE_MSVCIDE_RUN_PATH",
2017-04-14 19:02:05 +02:00
cmStateEnums::STATIC);
2016-07-09 11:21:54 +02:00
}
}
2017-04-14 19:02:05 +02:00
bool cmGlobalVisualStudio7Generator::FindMakeProgram(cmMakefile* mf)
{
2017-04-14 19:02:05 +02:00
if (!this->cmGlobalVisualStudioGenerator::FindMakeProgram(mf)) {
return false;
}
2014-08-03 19:52:23 +02:00
mf->AddDefinition("CMAKE_VS_DEVENV_COMMAND",
this->GetDevEnvCommand().c_str());
2017-04-14 19:02:05 +02:00
return true;
2014-08-03 19:52:23 +02:00
}
std::string const& cmGlobalVisualStudio7Generator::GetDevEnvCommand()
{
2016-07-09 11:21:54 +02:00
if (!this->DevEnvCommandInitialized) {
2014-08-03 19:52:23 +02:00
this->DevEnvCommandInitialized = true;
this->DevEnvCommand = this->FindDevEnvCommand();
2016-07-09 11:21:54 +02:00
}
2014-08-03 19:52:23 +02:00
return this->DevEnvCommand;
}
2014-08-03 19:52:23 +02:00
std::string cmGlobalVisualStudio7Generator::FindDevEnvCommand()
{
std::string vscmd;
2016-10-30 18:24:19 +01:00
std::string vskey;
// Search in standard location.
vskey = this->GetRegistryBase() + ";InstallDir";
2016-07-09 11:21:54 +02:00
if (cmSystemTools::ReadRegistryValue(vskey.c_str(), vscmd,
cmSystemTools::KeyWOW64_32)) {
2014-08-03 19:52:23 +02:00
cmSystemTools::ConvertToUnixSlashes(vscmd);
2016-10-30 18:24:19 +01:00
vscmd += "/devenv.com";
if (cmSystemTools::FileExists(vscmd, true)) {
return vscmd;
}
2016-07-09 11:21:54 +02:00
}
2016-10-30 18:24:19 +01:00
// Search where VS15Preview places it.
vskey = "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VisualStudio\\SxS\\VS7;";
vskey += this->GetIDEVersion();
if (cmSystemTools::ReadRegistryValue(vskey.c_str(), vscmd,
cmSystemTools::KeyWOW64_32)) {
cmSystemTools::ConvertToUnixSlashes(vscmd);
vscmd += "/Common7/IDE/devenv.com";
if (cmSystemTools::FileExists(vscmd, true)) {
return vscmd;
}
}
vscmd = "devenv.com";
2014-08-03 19:52:23 +02:00
return vscmd;
}
2014-08-03 19:52:23 +02:00
const char* cmGlobalVisualStudio7Generator::ExternalProjectType(
const char* location)
{
std::string extension = cmSystemTools::GetFilenameLastExtension(location);
2016-07-09 11:21:54 +02:00
if (extension == ".vbproj") {
2014-08-03 19:52:23 +02:00
return "F184B08F-C81C-45F6-A57F-5ABD9991F28F";
2016-07-09 11:21:54 +02:00
} else if (extension == ".csproj") {
2014-08-03 19:52:23 +02:00
return "FAE04EC0-301F-11D3-BF4B-00C04F79EFBC";
2016-07-09 11:21:54 +02:00
} else if (extension == ".fsproj") {
2014-08-03 19:52:23 +02:00
return "F2A71F9B-5D33-465A-A702-920D77279786";
2016-07-09 11:21:54 +02:00
} else if (extension == ".vdproj") {
2014-08-03 19:52:23 +02:00
return "54435603-DBB4-11D2-8724-00A0C9A8B90C";
2016-07-09 11:21:54 +02:00
} else if (extension == ".dbproj") {
2014-08-03 19:52:23 +02:00
return "C8D11400-126E-41CD-887F-60BD40844F9E";
2016-07-09 11:21:54 +02:00
} else if (extension == ".wixproj") {
2014-08-03 19:52:23 +02:00
return "930C7802-8A8C-48F9-8165-68863BCCD9DD";
2016-07-09 11:21:54 +02:00
} else if (extension == ".pyproj") {
2014-08-03 19:52:23 +02:00
return "888888A0-9F3D-457C-B088-3A5042F75D52";
2016-07-09 11:21:54 +02:00
}
2014-08-03 19:52:23 +02:00
return "8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942";
}
void cmGlobalVisualStudio7Generator::GenerateBuildCommand(
2016-07-09 11:21:54 +02:00
std::vector<std::string>& makeCommand, const std::string& makeProgram,
const std::string& projectName, const std::string& /*projectDir*/,
const std::string& targetName, const std::string& config, bool /*fast*/,
bool /*verbose*/, std::vector<std::string> const& makeOptions)
2014-08-03 19:52:23 +02:00
{
// Select the caller- or user-preferred make program, else devenv.
std::string makeProgramSelected =
this->SelectMakeProgram(makeProgram, this->GetDevEnvCommand());
// Ignore the above preference if it is msbuild.
// Assume any other value is either a devenv or
// command-line compatible with devenv.
std::string makeProgramLower = makeProgramSelected;
cmSystemTools::LowerCase(makeProgramLower);
2016-07-09 11:21:54 +02:00
if (makeProgramLower.find("msbuild") != std::string::npos) {
2014-08-03 19:52:23 +02:00
makeProgramSelected = this->GetDevEnvCommand();
2016-07-09 11:21:54 +02:00
}
2014-08-03 19:52:23 +02:00
makeCommand.push_back(makeProgramSelected);
makeCommand.push_back(std::string(projectName) + ".sln");
2015-04-27 22:25:09 +02:00
std::string realTarget = targetName;
bool clean = false;
2016-07-09 11:21:54 +02:00
if (realTarget == "clean") {
clean = true;
2015-04-27 22:25:09 +02:00
realTarget = "ALL_BUILD";
2016-07-09 11:21:54 +02:00
}
if (clean) {
2014-08-03 19:52:23 +02:00
makeCommand.push_back("/clean");
2016-07-09 11:21:54 +02:00
} else {
2014-08-03 19:52:23 +02:00
makeCommand.push_back("/build");
2016-07-09 11:21:54 +02:00
}
2016-07-09 11:21:54 +02:00
if (!config.empty()) {
2014-08-03 19:52:23 +02:00
makeCommand.push_back(config);
2016-07-09 11:21:54 +02:00
} else {
2014-08-03 19:52:23 +02:00
makeCommand.push_back("Debug");
2016-07-09 11:21:54 +02:00
}
2014-08-03 19:52:23 +02:00
makeCommand.push_back("/project");
2016-07-09 11:21:54 +02:00
if (!realTarget.empty()) {
2015-04-27 22:25:09 +02:00
makeCommand.push_back(realTarget);
2016-07-09 11:21:54 +02:00
} else {
2014-08-03 19:52:23 +02:00
makeCommand.push_back("ALL_BUILD");
2016-07-09 11:21:54 +02:00
}
makeCommand.insert(makeCommand.end(), makeOptions.begin(),
makeOptions.end());
}
///! Create a local generator appropriate to this Global Generator
2016-07-09 11:21:54 +02:00
cmLocalGenerator* cmGlobalVisualStudio7Generator::CreateLocalGenerator(
cmMakefile* mf)
{
2016-07-09 11:21:54 +02:00
cmLocalVisualStudio7Generator* lg =
2015-11-17 17:22:37 +01:00
new cmLocalVisualStudio7Generator(this, mf);
return lg;
}
2015-04-27 22:25:09 +02:00
std::string const& cmGlobalVisualStudio7Generator::GetPlatformName() const
{
2016-07-09 11:21:54 +02:00
if (!this->GeneratorPlatform.empty()) {
2015-04-27 22:25:09 +02:00
return this->GeneratorPlatform;
2016-07-09 11:21:54 +02:00
}
2015-04-27 22:25:09 +02:00
return this->DefaultPlatformName;
}
bool cmGlobalVisualStudio7Generator::SetSystemName(std::string const& s,
cmMakefile* mf)
2013-11-03 12:27:13 +02:00
{
2014-08-03 19:52:23 +02:00
mf->AddDefinition("CMAKE_VS_INTEL_Fortran_PROJECT_VERSION",
this->GetIntelProjectVersion());
2015-04-27 22:25:09 +02:00
return this->cmGlobalVisualStudioGenerator::SetSystemName(s, mf);
}
bool cmGlobalVisualStudio7Generator::SetGeneratorPlatform(std::string const& p,
cmMakefile* mf)
{
2016-07-09 11:21:54 +02:00
if (this->GetPlatformName() == "x64") {
2015-04-27 22:25:09 +02:00
mf->AddDefinition("CMAKE_FORCE_WIN64", "TRUE");
2016-07-09 11:21:54 +02:00
} else if (this->GetPlatformName() == "Itanium") {
2015-04-27 22:25:09 +02:00
mf->AddDefinition("CMAKE_FORCE_IA64", "TRUE");
2016-07-09 11:21:54 +02:00
}
2015-04-27 22:25:09 +02:00
mf->AddDefinition("CMAKE_VS_PLATFORM_NAME", this->GetPlatformName().c_str());
return this->cmGlobalVisualStudioGenerator::SetGeneratorPlatform(p, mf);
2013-11-03 12:27:13 +02:00
}
void cmGlobalVisualStudio7Generator::Generate()
{
// first do the superclass method
this->cmGlobalVisualStudioGenerator::Generate();
// Now write out the DSW
this->OutputSLNFile();
// If any solution or project files changed during the generation,
// tell Visual Studio to reload them...
2016-07-09 11:21:54 +02:00
if (!cmSystemTools::GetErrorOccuredFlag()) {
this->CallVisualStudioMacro(MacroReload);
2016-07-09 11:21:54 +02:00
}
2015-08-17 11:37:30 +02:00
2017-07-20 19:35:53 +02:00
if (this->Version == VS8 && !this->CMakeInstance->GetIsInTryCompile()) {
const char* cmakeWarnVS8 =
this->CMakeInstance->GetState()->GetCacheEntryValue("CMAKE_WARN_VS8");
if (!cmakeWarnVS8 || !cmSystemTools::IsOff(cmakeWarnVS8)) {
2015-08-17 11:37:30 +02:00
this->CMakeInstance->IssueMessage(
cmake::WARNING,
2017-07-20 19:35:53 +02:00
"The \"Visual Studio 8 2005\" generator is deprecated "
2015-08-17 11:37:30 +02:00
"and will be removed in a future version of CMake."
"\n"
2017-07-20 19:35:53 +02:00
"Add CMAKE_WARN_VS8=OFF to the cache to disable this warning.");
2015-08-17 11:37:30 +02:00
}
2016-07-09 11:21:54 +02:00
}
}
2016-07-09 11:21:54 +02:00
void cmGlobalVisualStudio7Generator::OutputSLNFile(
cmLocalGenerator* root, std::vector<cmLocalGenerator*>& generators)
{
2016-07-09 11:21:54 +02:00
if (generators.empty()) {
return;
2016-07-09 11:21:54 +02:00
}
2016-03-13 13:35:51 +01:00
this->CurrentProject = root->GetProjectName();
std::string fname = root->GetCurrentBinaryDirectory();
fname += "/";
2016-03-13 13:35:51 +01:00
fname += root->GetProjectName();
fname += ".sln";
cmGeneratedFileStream fout(fname.c_str());
fout.SetCopyIfDifferent(true);
2016-07-09 11:21:54 +02:00
if (!fout) {
return;
2016-07-09 11:21:54 +02:00
}
this->WriteSLNFile(fout, root, generators);
2016-07-09 11:21:54 +02:00
if (fout.Close()) {
this->FileReplacedDuringGenerate(fname);
2016-07-09 11:21:54 +02:00
}
}
// output the SLN file
void cmGlobalVisualStudio7Generator::OutputSLNFile()
{
2015-04-27 22:25:09 +02:00
std::map<std::string, std::vector<cmLocalGenerator*> >::iterator it;
2016-07-09 11:21:54 +02:00
for (it = this->ProjectMap.begin(); it != this->ProjectMap.end(); ++it) {
this->OutputSLNFile(it->second[0], it->second);
2016-07-09 11:21:54 +02:00
}
}
void cmGlobalVisualStudio7Generator::WriteTargetConfigurations(
2016-07-09 11:21:54 +02:00
std::ostream& fout, std::vector<std::string> const& configs,
OrderedTargetDependSet const& projectTargets)
{
// loop over again and write out configurations for each target
// in the solution
2016-07-09 11:21:54 +02:00
for (OrderedTargetDependSet::const_iterator tt = projectTargets.begin();
tt != projectTargets.end(); ++tt) {
2016-03-13 13:35:51 +01:00
cmGeneratorTarget const* target = *tt;
2017-04-14 19:02:05 +02:00
if (target->GetType() == cmStateEnums::INTERFACE_LIBRARY) {
2014-08-03 19:52:23 +02:00
continue;
2016-07-09 11:21:54 +02:00
}
2009-10-04 10:30:41 +03:00
const char* expath = target->GetProperty("EXTERNAL_MSPROJECT");
2016-07-09 11:21:54 +02:00
if (expath) {
2015-08-17 11:37:30 +02:00
std::set<std::string> allConfigurations(configs.begin(), configs.end());
2015-04-27 22:25:09 +02:00
const char* mapping = target->GetProperty("VS_PLATFORM_MAPPING");
2017-07-20 19:35:53 +02:00
this->WriteProjectConfigurations(fout, target->GetName().c_str(),
*target, configs, allConfigurations,
mapping ? mapping : "");
2016-07-09 11:21:54 +02:00
} else {
2013-03-16 19:13:01 +02:00
const std::set<std::string>& configsPartOfDefaultBuild =
2015-08-17 11:37:30 +02:00
this->IsPartOfDefaultBuild(configs, projectTargets, target);
2016-07-09 11:21:54 +02:00
const char* vcprojName = target->GetProperty("GENERATOR_FILE_NAME");
if (vcprojName) {
2017-07-20 19:35:53 +02:00
this->WriteProjectConfigurations(fout, vcprojName, *target, configs,
configsPartOfDefaultBuild);
}
}
2016-07-09 11:21:54 +02:00
}
}
void cmGlobalVisualStudio7Generator::WriteTargetsToSolution(
2016-07-09 11:21:54 +02:00
std::ostream& fout, cmLocalGenerator* root,
OrderedTargetDependSet const& projectTargets)
{
2013-03-16 19:13:01 +02:00
VisualStudioFolders.clear();
2016-10-30 18:24:19 +01:00
std::string rootBinaryDir = root->GetCurrentBinaryDirectory();
2016-07-09 11:21:54 +02:00
for (OrderedTargetDependSet::const_iterator tt = projectTargets.begin();
tt != projectTargets.end(); ++tt) {
2016-03-13 13:35:51 +01:00
cmGeneratorTarget const* target = *tt;
2017-04-14 19:02:05 +02:00
if (target->GetType() == cmStateEnums::INTERFACE_LIBRARY) {
2014-08-03 19:52:23 +02:00
continue;
2016-07-09 11:21:54 +02:00
}
2011-01-16 11:35:12 +01:00
bool written = false;
// handle external vc project files
2009-10-04 10:30:41 +03:00
const char* expath = target->GetProperty("EXTERNAL_MSPROJECT");
2016-07-09 11:21:54 +02:00
if (expath) {
2009-10-04 10:30:41 +03:00
std::string project = target->GetName();
std::string location = expath;
2012-06-27 20:52:58 +03:00
2016-07-09 11:21:54 +02:00
this->WriteExternalProject(fout, project.c_str(), location.c_str(),
2012-06-27 20:52:58 +03:00
target->GetProperty("VS_PROJECT_TYPE"),
target->GetUtilities());
2011-01-16 11:35:12 +01:00
written = true;
2016-07-09 11:21:54 +02:00
} else {
const char* vcprojName = target->GetProperty("GENERATOR_FILE_NAME");
if (vcprojName) {
2016-03-13 13:35:51 +01:00
cmLocalGenerator* lg = target->GetLocalGenerator();
std::string dir = lg->GetCurrentBinaryDirectory();
2016-10-30 18:24:19 +01:00
dir = root->ConvertToRelativePath(rootBinaryDir, dir.c_str());
2016-07-09 11:21:54 +02:00
if (dir == ".") {
2011-01-16 11:35:12 +01:00
dir = ""; // msbuild cannot handle ".\" prefix
}
2016-07-09 11:21:54 +02:00
this->WriteProject(fout, vcprojName, dir.c_str(), target);
written = true;
2011-01-16 11:35:12 +01:00
}
2016-07-09 11:21:54 +02:00
}
2010-11-13 01:00:53 +02:00
2011-01-16 11:35:12 +01:00
// Create "solution folder" information from FOLDER target property
//
2016-07-09 11:21:54 +02:00
if (written && this->UseFolderProperty()) {
2017-04-14 19:02:05 +02:00
const std::string targetFolder = target->GetEffectiveFolderName();
if (!targetFolder.empty()) {
2011-01-16 11:35:12 +01:00
std::vector<cmsys::String> tokens =
cmSystemTools::SplitString(targetFolder, '/', false);
std::string cumulativePath = "";
2016-07-09 11:21:54 +02:00
for (std::vector<cmsys::String>::iterator iter = tokens.begin();
iter != tokens.end(); ++iter) {
if (!iter->size()) {
2011-01-16 11:35:12 +01:00
continue;
2016-07-09 11:21:54 +02:00
}
2011-01-16 11:35:12 +01:00
2016-07-09 11:21:54 +02:00
if (cumulativePath.empty()) {
2011-01-16 11:35:12 +01:00
cumulativePath = "CMAKE_FOLDER_GUID_" + *iter;
2016-07-09 11:21:54 +02:00
} else {
VisualStudioFolders[cumulativePath].insert(cumulativePath + "/" +
*iter);
2011-01-16 11:35:12 +01:00
cumulativePath = cumulativePath + "/" + *iter;
}
2016-07-09 11:21:54 +02:00
}
2011-01-16 11:35:12 +01:00
2016-07-09 11:21:54 +02:00
if (!cumulativePath.empty()) {
2011-01-16 11:35:12 +01:00
VisualStudioFolders[cumulativePath].insert(target->GetName());
}
}
}
2016-07-09 11:21:54 +02:00
}
}
void cmGlobalVisualStudio7Generator::WriteTargetDepends(
2016-07-09 11:21:54 +02:00
std::ostream& fout, OrderedTargetDependSet const& projectTargets)
{
2016-07-09 11:21:54 +02:00
for (OrderedTargetDependSet::const_iterator tt = projectTargets.begin();
tt != projectTargets.end(); ++tt) {
2016-03-13 13:35:51 +01:00
cmGeneratorTarget const* target = *tt;
2017-04-14 19:02:05 +02:00
if (target->GetType() == cmStateEnums::INTERFACE_LIBRARY) {
2014-08-03 19:52:23 +02:00
continue;
2010-11-13 01:00:53 +02:00
}
2016-07-09 11:21:54 +02:00
const char* vcprojName = target->GetProperty("GENERATOR_FILE_NAME");
if (vcprojName) {
std::string dir =
target->GetLocalGenerator()->GetCurrentSourceDirectory();
this->WriteProjectDepends(fout, vcprojName, dir.c_str(), target);
2010-11-13 01:00:53 +02:00
}
2016-07-09 11:21:54 +02:00
}
}
2010-11-13 01:00:53 +02:00
void cmGlobalVisualStudio7Generator::WriteFolders(std::ostream& fout)
{
2016-07-09 11:21:54 +02:00
const char* prefix = "CMAKE_FOLDER_GUID_";
2010-11-13 01:00:53 +02:00
const std::string::size_type skip_prefix = strlen(prefix);
std::string guidProjectTypeFolder = "2150E333-8FDC-42A3-9474-1A3956D46DE8";
2016-07-09 11:21:54 +02:00
for (std::map<std::string, std::set<std::string> >::iterator iter =
VisualStudioFolders.begin();
iter != VisualStudioFolders.end(); ++iter) {
2010-11-13 01:00:53 +02:00
std::string fullName = iter->first;
std::string guid = this->GetGUID(fullName.c_str());
2016-07-09 11:21:54 +02:00
std::replace(fullName.begin(), fullName.end(), '/', '\\');
if (cmSystemTools::StringStartsWith(fullName.c_str(), prefix)) {
2010-11-13 01:00:53 +02:00
fullName = fullName.substr(skip_prefix);
2016-07-09 11:21:54 +02:00
}
2010-11-13 01:00:53 +02:00
std::string nameOnly = cmSystemTools::GetFilenameName(fullName);
2016-07-09 11:21:54 +02:00
fout << "Project(\"{" << guidProjectTypeFolder << "}\") = \"" << nameOnly
<< "\", \"" << fullName << "\", \"{" << guid << "}\"\nEndProject\n";
}
2010-11-13 01:00:53 +02:00
}
void cmGlobalVisualStudio7Generator::WriteFoldersContent(std::ostream& fout)
{
2016-07-09 11:21:54 +02:00
for (std::map<std::string, std::set<std::string> >::iterator iter =
VisualStudioFolders.begin();
iter != VisualStudioFolders.end(); ++iter) {
2010-11-13 01:00:53 +02:00
std::string key(iter->first);
std::string guidParent(this->GetGUID(key.c_str()));
2016-07-09 11:21:54 +02:00
for (std::set<std::string>::iterator it = iter->second.begin();
it != iter->second.end(); ++it) {
2010-11-13 01:00:53 +02:00
std::string value(*it);
std::string guid(this->GetGUID(value.c_str()));
fout << "\t\t{" << guid << "} = {" << guidParent << "}\n";
}
2016-07-09 11:21:54 +02:00
}
2010-11-13 01:00:53 +02:00
}
2016-07-09 11:21:54 +02:00
std::string cmGlobalVisualStudio7Generator::ConvertToSolutionPath(
const char* path)
{
// Convert to backslashes. Do not use ConvertToOutputPath because
// we will add quoting ourselves, and we know these projects always
// use windows slashes.
std::string d = path;
std::string::size_type pos = 0;
2016-07-09 11:21:54 +02:00
while ((pos = d.find('/', pos)) != d.npos) {
d[pos++] = '\\';
2016-07-09 11:21:54 +02:00
}
return d;
}
2016-07-09 11:21:54 +02:00
void cmGlobalVisualStudio7Generator::WriteSLNGlobalSections(
std::ostream& fout, cmLocalGenerator* root)
2013-03-16 19:13:01 +02:00
{
2017-07-20 19:35:53 +02:00
std::string const guid = this->GetGUID(root->GetProjectName() + ".sln");
2013-03-16 19:13:01 +02:00
bool extensibilityGlobalsOverridden = false;
bool extensibilityAddInsOverridden = false;
2015-11-17 17:22:37 +01:00
const std::vector<std::string> propKeys =
2016-07-09 11:21:54 +02:00
root->GetMakefile()->GetPropertyKeys();
for (std::vector<std::string>::const_iterator it = propKeys.begin();
it != propKeys.end(); ++it) {
if (it->find("VS_GLOBAL_SECTION_") == 0) {
2013-03-16 19:13:01 +02:00
std::string sectionType;
2015-11-17 17:22:37 +01:00
std::string name = it->substr(18);
2016-07-09 11:21:54 +02:00
if (name.find("PRE_") == 0) {
2013-03-16 19:13:01 +02:00
name = name.substr(4);
sectionType = "preSolution";
2016-07-09 11:21:54 +02:00
} else if (name.find("POST_") == 0) {
2013-03-16 19:13:01 +02:00
name = name.substr(5);
sectionType = "postSolution";
2016-07-09 11:21:54 +02:00
} else
2013-03-16 19:13:01 +02:00
continue;
2016-07-09 11:21:54 +02:00
if (!name.empty()) {
2017-07-20 19:35:53 +02:00
bool addGuid = false;
if (name == "ExtensibilityGlobals" && sectionType == "postSolution") {
addGuid = true;
2013-03-16 19:13:01 +02:00
extensibilityGlobalsOverridden = true;
2017-07-20 19:35:53 +02:00
} else if (name == "ExtensibilityAddIns" &&
sectionType == "postSolution") {
2013-03-16 19:13:01 +02:00
extensibilityAddInsOverridden = true;
2017-07-20 19:35:53 +02:00
}
2013-03-16 19:13:01 +02:00
fout << "\tGlobalSection(" << name << ") = " << sectionType << "\n";
std::vector<std::string> keyValuePairs;
2015-11-17 17:22:37 +01:00
cmSystemTools::ExpandListArgument(
2016-07-09 11:21:54 +02:00
root->GetMakefile()->GetProperty(it->c_str()), keyValuePairs);
for (std::vector<std::string>::const_iterator itPair =
keyValuePairs.begin();
itPair != keyValuePairs.end(); ++itPair) {
2013-03-16 19:13:01 +02:00
const std::string::size_type posEqual = itPair->find('=');
2016-07-09 11:21:54 +02:00
if (posEqual != std::string::npos) {
2013-03-16 19:13:01 +02:00
const std::string key =
cmSystemTools::TrimWhitespace(itPair->substr(0, posEqual));
const std::string value =
cmSystemTools::TrimWhitespace(itPair->substr(posEqual + 1));
fout << "\t\t" << key << " = " << value << "\n";
2017-07-20 19:35:53 +02:00
if (key == "SolutionGuid") {
addGuid = false;
}
2013-03-16 19:13:01 +02:00
}
}
2017-07-20 19:35:53 +02:00
if (addGuid) {
fout << "\t\tSolutionGuid = {" << guid << "}\n";
}
2016-07-09 11:21:54 +02:00
fout << "\tEndGlobalSection\n";
2013-03-16 19:13:01 +02:00
}
}
2016-07-09 11:21:54 +02:00
}
2017-07-20 19:35:53 +02:00
if (!extensibilityGlobalsOverridden) {
2013-03-16 19:13:01 +02:00
fout << "\tGlobalSection(ExtensibilityGlobals) = postSolution\n"
2017-07-20 19:35:53 +02:00
<< "\t\tSolutionGuid = {" << guid << "}\n"
2013-03-16 19:13:01 +02:00
<< "\tEndGlobalSection\n";
2017-07-20 19:35:53 +02:00
}
2016-07-09 11:21:54 +02:00
if (!extensibilityAddInsOverridden)
2013-03-16 19:13:01 +02:00
fout << "\tGlobalSection(ExtensibilityAddIns) = postSolution\n"
<< "\tEndGlobalSection\n";
}
// Standard end of dsw file
void cmGlobalVisualStudio7Generator::WriteSLNFooter(std::ostream& fout)
{
2013-03-16 19:13:01 +02:00
fout << "EndGlobal\n";
}
2016-07-09 11:21:54 +02:00
std::string cmGlobalVisualStudio7Generator::WriteUtilityDepend(
cmGeneratorTarget const* target)
2010-11-13 01:00:53 +02:00
{
2015-08-17 11:37:30 +02:00
std::vector<std::string> configs;
2016-03-13 13:35:51 +01:00
target->Target->GetMakefile()->GetConfigurations(configs);
2010-11-13 01:00:53 +02:00
std::string pname = target->GetName();
pname += "_UTILITY";
2016-03-13 13:35:51 +01:00
std::string fname = target->GetLocalGenerator()->GetCurrentBinaryDirectory();
2010-11-13 01:00:53 +02:00
fname += "/";
fname += pname;
fname += ".vcproj";
cmGeneratedFileStream fout(fname.c_str());
fout.SetCopyIfDifferent(true);
std::string guid = this->GetGUID(pname.c_str());
2016-07-09 11:21:54 +02:00
/* clang-format off */
2010-11-13 01:00:53 +02:00
fout <<
2015-04-27 22:25:09 +02:00
"<?xml version=\"1.0\" encoding = \""
<< this->Encoding() << "\"?>\n"
2010-11-13 01:00:53 +02:00
"<VisualStudioProject\n"
"\tProjectType=\"Visual C++\"\n"
"\tVersion=\"" << this->GetIDEVersion() << "0\"\n"
"\tName=\"" << pname << "\"\n"
"\tProjectGUID=\"{" << guid << "}\"\n"
"\tKeyword=\"Win32Proj\">\n"
"\t<Platforms><Platform Name=\"Win32\"/></Platforms>\n"
"\t<Configurations>\n"
;
2016-07-09 11:21:54 +02:00
/* clang-format on */
for (std::vector<std::string>::iterator i = configs.begin();
i != configs.end(); ++i) {
/* clang-format off */
2010-11-13 01:00:53 +02:00
fout <<
"\t\t<Configuration\n"
"\t\t\tName=\"" << *i << "|Win32\"\n"
"\t\t\tOutputDirectory=\"" << *i << "\"\n"
"\t\t\tIntermediateDirectory=\"" << pname << ".dir\\" << *i << "\"\n"
"\t\t\tConfigurationType=\"10\"\n"
"\t\t\tUseOfMFC=\"0\"\n"
"\t\t\tATLMinimizesCRunTimeLibraryUsage=\"FALSE\"\n"
"\t\t\tCharacterSet=\"2\">\n"
"\t\t</Configuration>\n"
;
2016-07-09 11:21:54 +02:00
/* clang-format on */
}
/* clang-format off */
2010-11-13 01:00:53 +02:00
fout <<
"\t</Configurations>\n"
"\t<Files></Files>\n"
"\t<Globals></Globals>\n"
"</VisualStudioProject>\n"
;
2016-07-09 11:21:54 +02:00
/* clang-format on */
2010-11-13 01:00:53 +02:00
2016-07-09 11:21:54 +02:00
if (fout.Close()) {
2010-11-13 01:00:53 +02:00
this->FileReplacedDuringGenerate(fname);
2016-07-09 11:21:54 +02:00
}
2010-11-13 01:00:53 +02:00
return pname;
}
2015-11-17 17:22:37 +01:00
std::string cmGlobalVisualStudio7Generator::GetGUID(std::string const& name)
{
2015-11-17 17:22:37 +01:00
std::string const& guidStoreName = name + "_GUID_CMAKE";
if (const char* storedGUID =
2016-07-09 11:21:54 +02:00
this->CMakeInstance->GetCacheDefinition(guidStoreName.c_str())) {
return std::string(storedGUID);
2016-07-09 11:21:54 +02:00
}
2015-11-17 17:22:37 +01:00
// Compute a GUID that is deterministic but unique to the build tree.
std::string input = this->CMakeInstance->GetState()->GetBinaryDirectory();
input += "|";
input += name;
2015-11-17 17:22:37 +01:00
cmUuid uuidGenerator;
2015-11-17 17:22:37 +01:00
std::vector<unsigned char> uuidNamespace;
2016-07-09 11:21:54 +02:00
uuidGenerator.StringToBinary("ee30c4be-5192-4fb0-b335-722a2dffe760",
uuidNamespace);
2015-11-17 17:22:37 +01:00
std::string guid = uuidGenerator.FromMd5(uuidNamespace, input);
return cmSystemTools::UpperCase(guid);
}
2016-07-09 11:21:54 +02:00
void cmGlobalVisualStudio7Generator::AppendDirectoryForConfig(
const std::string& prefix, const std::string& config,
const std::string& suffix, std::string& dir)
{
2016-07-09 11:21:54 +02:00
if (!config.empty()) {
dir += prefix;
dir += config;
dir += suffix;
2016-07-09 11:21:54 +02:00
}
}
2016-07-09 11:21:54 +02:00
std::set<std::string> cmGlobalVisualStudio7Generator::IsPartOfDefaultBuild(
2015-08-17 11:37:30 +02:00
std::vector<std::string> const& configs,
2016-03-13 13:35:51 +01:00
OrderedTargetDependSet const& projectTargets,
cmGeneratorTarget const* target)
{
2013-03-16 19:13:01 +02:00
std::set<std::string> activeConfigs;
// if it is a utilitiy target then only make it part of the
// default build if another target depends on it
int type = target->GetType();
2017-04-14 19:02:05 +02:00
if (type == cmStateEnums::GLOBAL_TARGET) {
2017-07-20 19:35:53 +02:00
std::vector<std::string> targetNames;
2017-04-14 19:02:05 +02:00
targetNames.push_back("INSTALL");
targetNames.push_back("PACKAGE");
2017-07-20 19:35:53 +02:00
for (std::vector<std::string>::const_iterator t = targetNames.begin();
2017-04-14 19:02:05 +02:00
t != targetNames.end(); ++t) {
// check if target <*t> is part of default build
if (target->GetName() == *t) {
const std::string propertyName =
"CMAKE_VS_INCLUDE_" + *t + "_TO_DEFAULT_BUILD";
// inspect CMAKE_VS_INCLUDE_<*t>_TO_DEFAULT_BUILD properties
for (std::vector<std::string>::const_iterator i = configs.begin();
i != configs.end(); ++i) {
const char* propertyValue =
target->Target->GetMakefile()->GetDefinition(propertyName);
cmGeneratorExpression ge;
CM_AUTO_PTR<cmCompiledGeneratorExpression> cge =
ge.Parse(propertyValue);
if (cmSystemTools::IsOn(
cge->Evaluate(target->GetLocalGenerator(), *i))) {
activeConfigs.insert(*i);
}
2015-08-17 11:37:30 +02:00
}
}
2013-03-16 19:13:01 +02:00
}
return activeConfigs;
2016-07-09 11:21:54 +02:00
}
2017-04-14 19:02:05 +02:00
if (type == cmStateEnums::UTILITY &&
2016-07-09 11:21:54 +02:00
!this->IsDependedOn(projectTargets, target)) {
return activeConfigs;
}
2013-03-16 19:13:01 +02:00
// inspect EXCLUDE_FROM_DEFAULT_BUILD[_<CONFIG>] properties
2016-07-09 11:21:54 +02:00
for (std::vector<std::string>::const_iterator i = configs.begin();
i != configs.end(); ++i) {
2013-03-16 19:13:01 +02:00
const char* propertyValue =
2016-03-13 13:35:51 +01:00
target->GetFeature("EXCLUDE_FROM_DEFAULT_BUILD", i->c_str());
2016-07-09 11:21:54 +02:00
if (cmSystemTools::IsOff(propertyValue)) {
2013-03-16 19:13:01 +02:00
activeConfigs.insert(*i);
}
2016-07-09 11:21:54 +02:00
}
2013-03-16 19:13:01 +02:00
return activeConfigs;
}
2016-07-09 11:21:54 +02:00
bool cmGlobalVisualStudio7Generator::IsDependedOn(
OrderedTargetDependSet const& projectTargets, cmGeneratorTarget const* gtIn)
2015-04-27 22:25:09 +02:00
{
for (OrderedTargetDependSet::const_iterator l = projectTargets.begin();
2016-07-09 11:21:54 +02:00
l != projectTargets.end(); ++l) {
2015-11-17 17:22:37 +01:00
TargetDependSet const& tgtdeps = this->GetTargetDirectDepends(*l);
2016-07-09 11:21:54 +02:00
if (tgtdeps.count(gtIn)) {
2015-04-27 22:25:09 +02:00
return true;
}
2016-07-09 11:21:54 +02:00
}
2015-04-27 22:25:09 +02:00
return false;
}
std::string cmGlobalVisualStudio7Generator::Encoding()
{
2017-04-14 19:02:05 +02:00
return "UTF-8";
2015-04-27 22:25:09 +02:00
}