cmake/Source/cmGlobalVisualStudio7Generator.cxx

773 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
2022-03-29 21:10:50 +02:00
#include <algorithm>
#include <cstdio>
#include <ostream>
2020-08-30 11:54:41 +02:00
#include <utility>
2020-02-01 23:06:01 +01:00
#include <vector>
2020-08-30 11:54:41 +02:00
#include <cm/memory>
2020-02-01 23:06:01 +01:00
#include <cm/string_view>
#include <windows.h>
#include "cmGeneratedFileStream.h"
2020-02-01 23:06:01 +01:00
#include "cmGeneratorExpression.h"
2016-10-30 18:24:19 +01:00
#include "cmGeneratorTarget.h"
2022-03-29 21:10:50 +02:00
#include "cmGlobalGenerator.h"
2023-07-02 19:51:09 +02:00
#include "cmList.h"
2022-03-29 21:10:50 +02:00
#include "cmLocalGenerator.h"
#include "cmLocalVisualStudio7Generator.h"
#include "cmMakefile.h"
2019-11-11 23:01:05 +01:00
#include "cmMessageType.h"
2017-04-14 19:02:05 +02:00
#include "cmState.h"
2022-03-29 21:10:50 +02:00
#include "cmStateTypes.h"
2020-02-01 23:06:01 +01:00
#include "cmStringAlgorithms.h"
2022-03-29 21:10:50 +02:00
#include "cmSystemTools.h"
#include "cmTarget.h"
#include "cmTargetDepend.h"
2015-11-17 17:22:37 +01:00
#include "cmUuid.h"
2022-03-29 21:10:50 +02:00
#include "cmVisualStudioGeneratorOptions.h"
#include "cmake.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 },
2021-11-20 13:41:27 +01:00
{ "UsePrecompiledHeader", "Y-", "Don't use precompiled header", "0", 0 },
2016-07-09 11:21:54 +02:00
{ "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.
2019-11-11 23:01:05 +01:00
{ "", "", "", "", 0 }
2015-08-17 11:37:30 +02:00
};
2020-02-01 23:06:01 +01:00
namespace {
std::string GetSLNFile(cmLocalGenerator* root)
{
return cmStrCat(root->GetCurrentBinaryDirectory(), '/',
root->GetProjectName(), ".sln");
}
}
2016-07-09 11:21:54 +02:00
cmGlobalVisualStudio7Generator::cmGlobalVisualStudio7Generator(
2019-11-11 23:01:05 +01:00
cmake* cm, std::string const& platformInGeneratorName)
: cmGlobalVisualStudioGenerator(cm, platformInGeneratorName)
{
2014-08-03 19:52:23 +02:00
this->DevEnvCommandInitialized = false;
2023-05-23 16:38:00 +02:00
this->MarmasmEnabled = false;
2015-04-27 22:25:09 +02:00
this->MasmEnabled = false;
2017-07-20 19:35:53 +02:00
this->NasmEnabled = false;
2015-08-17 11:37:30 +02:00
this->ExtraFlagTable = cmVS7ExtraFlagTable;
}
2023-05-23 16:38:00 +02:00
cmGlobalVisualStudio7Generator::~cmGlobalVisualStudio7Generator() = default;
2014-08-03 19:52:23 +02:00
// Package GUID of Intel Visual Fortran plugin to VS IDE
#define CM_INTEL_PLUGIN_GUID "{B68A201D-CB9B-47AF-A52F-7EEC72E217E4}"
2019-11-11 23:01:05 +01:00
const std::string& cmGlobalVisualStudio7Generator::GetIntelProjectVersion()
2014-08-03 19:52:23 +02:00
{
2019-11-11 23:01:05 +01:00
if (this->IntelProjectVersion.empty()) {
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;
2020-02-01 23:06:01 +01:00
std::string vskey =
cmStrCat(this->GetRegistryBase(),
"\\Packages\\" CM_INTEL_PLUGIN_GUID ";ProductVersion");
2019-11-11 23:01:05 +01:00
cmSystemTools::ReadRegistryValue(vskey, intelVersion,
2014-08-03 19:52:23 +02:00
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.
}
2019-11-11 23:01:05 +01:00
this->IntelProjectVersion = intelVersion;
2016-07-09 11:21:54 +02:00
}
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");
2021-11-20 13:41:27 +01:00
mf->InitCMAKE_CONFIGURATION_TYPES("Debug;Release;MinSizeRel;RelWithDebInfo");
2013-03-16 19:13:01 +02:00
// Create list of configurations requested by user's cache, if any.
2019-11-11 23:01:05 +01:00
this->cmGlobalVisualStudioGenerator::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)) {
2020-08-30 11:54:41 +02:00
mf->AddCacheDefinition("CMAKE_MSVCIDE_RUN_PATH", extraPath,
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;
}
2020-02-01 23:06:01 +01:00
mf->AddDefinition("CMAKE_VS_DEVENV_COMMAND", this->GetDevEnvCommand());
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";
2023-05-23 16:38:00 +02:00
if (cmSystemTools::ReadRegistryValue(vskey, vscmd,
2016-07-09 11:21:54 +02:00
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.
2023-05-23 16:38:00 +02:00
vskey =
cmStrCat(R"(HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VisualStudio\SxS\VS7;)",
this->GetIDEVersion());
if (cmSystemTools::ReadRegistryValue(vskey, vscmd,
2016-10-30 18:24:19 +01:00
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(
2020-08-30 11:54:41 +02:00
const std::string& location)
2014-08-03 19:52:23 +02:00
{
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";
2023-05-23 16:38:00 +02:00
}
if (extension == ".csproj") {
2014-08-03 19:52:23 +02:00
return "FAE04EC0-301F-11D3-BF4B-00C04F79EFBC";
2023-05-23 16:38:00 +02:00
}
if (extension == ".fsproj") {
2014-08-03 19:52:23 +02:00
return "F2A71F9B-5D33-465A-A702-920D77279786";
2023-05-23 16:38:00 +02:00
}
if (extension == ".vdproj") {
2014-08-03 19:52:23 +02:00
return "54435603-DBB4-11D2-8724-00A0C9A8B90C";
2023-05-23 16:38:00 +02:00
}
if (extension == ".dbproj") {
2014-08-03 19:52:23 +02:00
return "C8D11400-126E-41CD-887F-60BD40844F9E";
2023-05-23 16:38:00 +02:00
}
if (extension == ".wixproj") {
2014-08-03 19:52:23 +02:00
return "930C7802-8A8C-48F9-8165-68863BCCD9DD";
2023-05-23 16:38:00 +02:00
}
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";
}
2019-11-11 23:01:05 +01:00
std::vector<cmGlobalGenerator::GeneratedMakeCommand>
cmGlobalVisualStudio7Generator::GenerateBuildCommand(
const std::string& makeProgram, const std::string& projectName,
const std::string& /*projectDir*/,
std::vector<std::string> const& targetNames, const std::string& config,
2022-03-29 21:10:50 +02:00
int /*jobs*/, bool /*verbose*/, const cmBuildOptions& /*buildOptions*/,
2019-11-11 23:01:05 +01:00
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
2019-11-11 23:01:05 +01:00
// Workaround to convince VCExpress.exe to produce output.
const bool requiresOutputForward =
(makeProgramLower.find("vcexpress") != std::string::npos);
std::vector<GeneratedMakeCommand> makeCommands;
2019-11-11 23:01:05 +01:00
std::vector<std::string> realTargetNames = targetNames;
if (targetNames.empty() ||
((targetNames.size() == 1) && targetNames.front().empty())) {
realTargetNames = { "ALL_BUILD" };
2016-07-09 11:21:54 +02:00
}
2019-11-11 23:01:05 +01:00
for (const auto& tname : realTargetNames) {
std::string realTarget;
if (!tname.empty()) {
realTarget = tname;
} else {
continue;
}
bool clean = false;
if (realTarget == "clean") {
clean = true;
realTarget = "ALL_BUILD";
}
GeneratedMakeCommand makeCommand;
makeCommand.RequiresOutputForward = requiresOutputForward;
makeCommand.Add(makeProgramSelected);
makeCommand.Add(projectName + ".sln");
makeCommand.Add((clean ? "/clean" : "/build"));
makeCommand.Add((config.empty() ? "Debug" : config));
makeCommand.Add("/project");
makeCommand.Add(realTarget);
makeCommand.Add(makeOptions.begin(), makeOptions.end());
makeCommands.emplace_back(std::move(makeCommand));
}
return makeCommands;
}
2019-11-11 23:01:05 +01:00
//! Create a local generator appropriate to this Global Generator
2020-08-30 11:54:41 +02:00
std::unique_ptr<cmLocalGenerator>
cmGlobalVisualStudio7Generator::CreateLocalGenerator(cmMakefile* mf)
{
2020-08-30 11:54:41 +02:00
auto lg = cm::make_unique<cmLocalVisualStudio7Generator>(this, mf);
return std::unique_ptr<cmLocalGenerator>(std::move(lg));
}
2020-02-01 23:06:01 +01:00
#if !defined(CMAKE_BOOTSTRAP)
2019-11-11 23:01:05 +01:00
Json::Value cmGlobalVisualStudio7Generator::GetJson() const
2015-04-27 22:25:09 +02:00
{
2019-11-11 23:01:05 +01:00
Json::Value generator = this->cmGlobalVisualStudioGenerator::GetJson();
generator["platform"] = this->GetPlatformName();
return generator;
2015-04-27 22:25:09 +02:00
}
2019-11-11 23:01:05 +01:00
#endif
2015-04-27 22:25:09 +02:00
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",
2020-02-01 23:06:01 +01:00
this->GetIntelProjectVersion());
2015-04-27 22:25:09 +02:00
return this->cmGlobalVisualStudioGenerator::SetSystemName(s, mf);
}
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...
2022-08-04 22:12:04 +02:00
if (!cmSystemTools::GetErrorOccurredFlag() &&
2020-02-01 23:06:01 +01:00
!this->LocalGenerators.empty()) {
this->CallVisualStudioMacro(MacroReload,
2020-08-30 11:54:41 +02:00
GetSLNFile(this->LocalGenerators[0].get()));
2016-07-09 11:21:54 +02:00
}
2021-11-20 13:41:27 +01:00
2023-07-02 19:51:09 +02:00
if (this->Version == VSVersion::VS9 &&
!this->CMakeInstance->GetIsInTryCompile()) {
std::string cmakeWarnVS9;
if (cmValue cached = this->CMakeInstance->GetState()->GetCacheEntryValue(
"CMAKE_WARN_VS9")) {
this->CMakeInstance->MarkCliAsUsed("CMAKE_WARN_VS9");
cmakeWarnVS9 = *cached;
} else {
cmSystemTools::GetEnv("CMAKE_WARN_VS9", cmakeWarnVS9);
}
if (cmakeWarnVS9.empty() || !cmIsOff(cmakeWarnVS9)) {
this->CMakeInstance->IssueMessage(
MessageType::WARNING,
"The \"Visual Studio 9 2008\" generator is deprecated "
"and will be removed in a future version of CMake."
"\n"
"Add CMAKE_WARN_VS9=OFF to the cache to disable this warning.");
}
}
2022-11-16 20:14:03 +01:00
if (this->Version == VSVersion::VS11 &&
2022-03-29 21:10:50 +02:00
!this->CMakeInstance->GetIsInTryCompile()) {
2022-11-16 20:14:03 +01:00
std::string cmakeWarnVS11;
2021-11-20 13:41:27 +01:00
if (cmValue cached = this->CMakeInstance->GetState()->GetCacheEntryValue(
2022-11-16 20:14:03 +01:00
"CMAKE_WARN_VS11")) {
this->CMakeInstance->MarkCliAsUsed("CMAKE_WARN_VS11");
cmakeWarnVS11 = *cached;
2021-11-20 13:41:27 +01:00
} else {
2022-11-16 20:14:03 +01:00
cmSystemTools::GetEnv("CMAKE_WARN_VS11", cmakeWarnVS11);
2021-11-20 13:41:27 +01:00
}
2022-11-16 20:14:03 +01:00
if (cmakeWarnVS11.empty() || !cmIsOff(cmakeWarnVS11)) {
2021-11-20 13:41:27 +01:00
this->CMakeInstance->IssueMessage(
MessageType::WARNING,
2022-11-16 20:14:03 +01:00
"The \"Visual Studio 11 2012\" generator is deprecated "
2021-11-20 13:41:27 +01:00
"and will be removed in a future version of CMake."
"\n"
2022-11-16 20:14:03 +01:00
"Add CMAKE_WARN_VS11=OFF to the cache to disable this warning.");
2021-11-20 13:41:27 +01: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();
2020-02-01 23:06:01 +01:00
std::string fname = GetSLNFile(root);
2023-05-23 16:38:00 +02:00
cmGeneratedFileStream fout(fname);
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()
{
2018-04-23 21:13:27 +02:00
for (auto& it : this->ProjectMap) {
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
2018-04-23 21:13:27 +02:00
for (cmGeneratorTarget const* target : projectTargets) {
2022-08-04 22:12:04 +02:00
if (!this->IsInSolution(target)) {
2014-08-03 19:52:23 +02:00
continue;
2016-07-09 11:21:54 +02:00
}
2021-11-20 13:41:27 +01:00
cmValue 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());
2021-11-20 13:41:27 +01:00
cmValue mapping = target->GetProperty("VS_PLATFORM_MAPPING");
2020-08-30 11:54:41 +02:00
this->WriteProjectConfigurations(fout, target->GetName(), *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);
2021-11-20 13:41:27 +01:00
cmValue vcprojName = target->GetProperty("GENERATOR_FILE_NAME");
2016-07-09 11:21:54 +02:00
if (vcprojName) {
2022-03-29 21:10:50 +02:00
std::string mapping;
// On VS 19 and above, always map .NET SDK projects to "Any CPU".
if (target->IsDotNetSdkTarget() &&
this->GetVersion() >= VSVersion::VS16 &&
2023-05-23 16:38:00 +02:00
!cmGlobalVisualStudio7Generator::IsReservedTarget(
target->GetName())) {
2022-03-29 21:10:50 +02:00
mapping = "Any CPU";
}
2020-08-30 11:54:41 +02:00
this->WriteProjectConfigurations(fout, *vcprojName, *target, configs,
2022-03-29 21:10:50 +02:00
configsPartOfDefaultBuild, mapping);
}
}
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();
2022-11-16 20:14:03 +01:00
std::vector<std::string> configs =
root->GetMakefile()->GetGeneratorConfigs(cmMakefile::ExcludeEmptyConfig);
2018-04-23 21:13:27 +02:00
for (cmGeneratorTarget const* target : projectTargets) {
2022-08-04 22:12:04 +02:00
if (!this->IsInSolution(target)) {
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;
2022-11-16 20:14:03 +01:00
for (auto const& c : configs) {
target->CheckCxxModuleStatus(c);
}
if (target->HaveCxx20ModuleSources() && !this->SupportsCxxModuleDyndep()) {
root->GetMakefile()->IssueMessage(
MessageType::FATAL_ERROR,
cmStrCat("The \"", target->GetName(),
"\" target contains C++ module sources which are not "
"supported by the generator"));
}
// handle external vc project files
2021-11-20 13:41:27 +01:00
cmValue 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();
2023-05-23 16:38:00 +02:00
std::string const& location = *expath;
2012-06-27 20:52:58 +03:00
2021-11-20 13:41:27 +01:00
this->WriteExternalProject(fout, project, location,
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 {
2021-11-20 13:41:27 +01:00
cmValue vcprojName = target->GetProperty("GENERATOR_FILE_NAME");
2016-07-09 11:21:54 +02:00
if (vcprojName) {
2016-03-13 13:35:51 +01:00
cmLocalGenerator* lg = target->GetLocalGenerator();
std::string dir = lg->GetCurrentBinaryDirectory();
2021-09-14 00:13:48 +02:00
dir = root->MaybeRelativeToCurBinDir(dir);
2016-07-09 11:21:54 +02:00
if (dir == ".") {
2018-01-26 17:06:56 +01:00
dir.clear(); // msbuild cannot handle ".\" prefix
2011-01-16 11:35:12 +01:00
}
2020-08-30 11:54:41 +02:00
this->WriteProject(fout, *vcprojName, dir, target);
2016-07-09 11:21:54 +02:00
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()) {
2018-10-28 12:09:07 +01:00
std::vector<std::string> tokens =
2011-01-16 11:35:12 +01:00
cmSystemTools::SplitString(targetFolder, '/', false);
2018-01-26 17:06:56 +01:00
std::string cumulativePath;
2011-01-16 11:35:12 +01:00
2018-10-28 12:09:07 +01:00
for (std::string const& iter : tokens) {
2023-05-23 16:38:00 +02:00
if (iter.empty()) {
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()) {
2018-04-23 21:13:27 +02:00
cumulativePath = "CMAKE_FOLDER_GUID_" + iter;
2016-07-09 11:21:54 +02:00
} else {
VisualStudioFolders[cumulativePath].insert(cumulativePath + "/" +
2018-04-23 21:13:27 +02:00
iter);
2011-01-16 11:35:12 +01:00
2018-04-23 21:13:27 +02:00
cumulativePath = cumulativePath + "/" + iter;
2011-01-16 11:35:12 +01:00
}
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
}
}
2010-11-13 01:00:53 +02:00
void cmGlobalVisualStudio7Generator::WriteFolders(std::ostream& fout)
{
2020-02-01 23:06:01 +01:00
cm::string_view const prefix = "CMAKE_FOLDER_GUID_";
2010-11-13 01:00:53 +02:00
std::string guidProjectTypeFolder = "2150E333-8FDC-42A3-9474-1A3956D46DE8";
2018-04-23 21:13:27 +02:00
for (auto const& iter : VisualStudioFolders) {
std::string fullName = iter.first;
std::string guid = this->GetGUID(fullName);
2010-11-13 01:00:53 +02:00
2016-07-09 11:21:54 +02:00
std::replace(fullName.begin(), fullName.end(), '/', '\\');
2020-02-01 23:06:01 +01:00
if (cmHasPrefix(fullName, prefix)) {
fullName = fullName.substr(prefix.size());
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)
{
2018-04-23 21:13:27 +02:00
for (auto const& iter : VisualStudioFolders) {
std::string key(iter.first);
std::string guidParent(this->GetGUID(key));
2010-11-13 01:00:53 +02:00
2018-04-23 21:13:27 +02:00
for (std::string const& it : iter.second) {
2023-05-23 16:38:00 +02:00
std::string const& value(it);
2018-04-23 21:13:27 +02:00
std::string guid(this->GetGUID(value));
2010-11-13 01:00:53 +02:00
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(
2020-08-30 11:54:41 +02:00
const std::string& 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;
2023-05-23 16:38:00 +02:00
while ((pos = d.find('/', pos)) != std::string::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();
2018-04-23 21:13:27 +02:00
for (std::string const& it : propKeys) {
2020-08-30 11:54:41 +02:00
if (cmHasLiteralPrefix(it, "VS_GLOBAL_SECTION_")) {
2013-03-16 19:13:01 +02:00
std::string sectionType;
2018-04-23 21:13:27 +02:00
std::string name = it.substr(18);
2020-08-30 11:54:41 +02:00
if (cmHasLiteralPrefix(name, "PRE_")) {
2013-03-16 19:13:01 +02:00
name = name.substr(4);
sectionType = "preSolution";
2020-08-30 11:54:41 +02:00
} else if (cmHasLiteralPrefix(name, "POST_")) {
2013-03-16 19:13:01 +02:00
name = name.substr(5);
sectionType = "postSolution";
2023-05-23 16:38:00 +02:00
} else {
2013-03-16 19:13:01 +02:00
continue;
2023-05-23 16:38:00 +02:00
}
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";
2021-11-20 13:41:27 +01:00
cmValue p = root->GetMakefile()->GetProperty(it);
2023-07-02 19:51:09 +02:00
cmList keyValuePairs{ *p };
2018-04-23 21:13:27 +02:00
for (std::string const& itPair : keyValuePairs) {
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 =
2020-02-01 23:06:01 +01:00
cmTrimWhitespace(itPair.substr(0, posEqual));
2013-03-16 19:13:01 +02:00
const std::string value =
2020-02-01 23:06:01 +01:00
cmTrimWhitespace(itPair.substr(posEqual + 1));
2013-03-16 19:13:01 +02:00
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
}
2023-05-23 16:38:00 +02:00
if (!extensibilityAddInsOverridden) {
2013-03-16 19:13:01 +02:00
fout << "\tGlobalSection(ExtensibilityAddIns) = postSolution\n"
<< "\tEndGlobalSection\n";
2023-05-23 16:38:00 +02:00
}
2013-03-16 19:13:01 +02:00
}
// 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
{
2021-09-14 00:13:48 +02:00
std::vector<std::string> configs =
target->Target->GetMakefile()->GetGeneratorConfigs(
cmMakefile::ExcludeEmptyConfig);
2020-02-01 23:06:01 +01:00
std::string pname = cmStrCat(target->GetName(), "_UTILITY");
std::string fname =
cmStrCat(target->GetLocalGenerator()->GetCurrentBinaryDirectory(), '/',
pname, ".vcproj");
2023-05-23 16:38:00 +02:00
cmGeneratedFileStream fout(fname);
2010-11-13 01:00:53 +02:00
fout.SetCopyIfDifferent(true);
2023-05-23 16:38:00 +02:00
std::string guid = this->GetGUID(pname);
2010-11-13 01:00:53 +02:00
2016-07-09 11:21:54 +02:00
/* clang-format off */
2010-11-13 01:00:53 +02:00
fout <<
2023-05-23 16:38:00 +02:00
R"(<?xml version="1.0" encoding = ")"
2015-04-27 22:25:09 +02:00
<< 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 */
2018-04-23 21:13:27 +02:00
for (std::string const& i : configs) {
2016-07-09 11:21:54 +02:00
/* clang-format off */
2010-11-13 01:00:53 +02:00
fout <<
"\t\t<Configuration\n"
2018-04-23 21:13:27 +02:00
"\t\t\tName=\"" << i << "|Win32\"\n"
"\t\t\tOutputDirectory=\"" << i << "\"\n"
"\t\t\tIntermediateDirectory=\"" << pname << ".dir\\" << i << "\"\n"
2010-11-13 01:00:53 +02:00
"\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";
2021-11-20 13:41:27 +01:00
if (cmValue storedGUID =
2019-11-11 23:01:05 +01:00
this->CMakeInstance->GetCacheDefinition(guidStoreName)) {
2021-09-14 00:13:48 +02:00
return *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.
2020-02-01 23:06:01 +01:00
std::string input =
cmStrCat(this->CMakeInstance->GetState()->GetBinaryDirectory(), '|', 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;
2023-07-02 19:51:09 +02:00
// if it is a utility 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");
2018-04-23 21:13:27 +02:00
for (std::string const& t : targetNames) {
// check if target <t> is part of default build
if (target->GetName() == t) {
2017-04-14 19:02:05 +02:00
const std::string propertyName =
2018-04-23 21:13:27 +02:00
"CMAKE_VS_INCLUDE_" + t + "_TO_DEFAULT_BUILD";
// inspect CMAKE_VS_INCLUDE_<t>_TO_DEFAULT_BUILD properties
for (std::string const& i : configs) {
2021-11-20 13:41:27 +01:00
cmValue propertyValue =
2017-04-14 19:02:05 +02:00
target->Target->GetMakefile()->GetDefinition(propertyName);
2020-08-30 11:54:41 +02:00
if (propertyValue &&
cmIsOn(cmGeneratorExpression::Evaluate(
2021-09-14 00:13:48 +02:00
*propertyValue, target->GetLocalGenerator(), i))) {
2018-04-23 21:13:27 +02:00
activeConfigs.insert(i);
2017-04-14 19:02:05 +02:00
}
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
2018-04-23 21:13:27 +02:00
for (std::string const& i : configs) {
2021-09-14 00:13:48 +02:00
if (cmIsOff(target->GetFeature("EXCLUDE_FROM_DEFAULT_BUILD", i))) {
2018-04-23 21:13:27 +02:00
activeConfigs.insert(i);
2013-03-16 19:13:01 +02:00
}
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
{
2023-05-23 16:38:00 +02:00
return std::any_of(projectTargets.begin(), projectTargets.end(),
[this, gtIn](cmTargetDepend const& l) {
TargetDependSet const& tgtdeps =
this->GetTargetDirectDepends(l);
return tgtdeps.count(gtIn);
});
2015-04-27 22:25:09 +02:00
}
std::string cmGlobalVisualStudio7Generator::Encoding()
{
2017-04-14 19:02:05 +02:00
return "UTF-8";
2015-04-27 22:25:09 +02:00
}