1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-05-09 23:08:18 +08:00
CMake/Source/cmInstallCxxModuleBmiGenerator.cxx
Kitware Robot 0b96ae1f6a Revise C++ coding style using clang-format with "east const"
Run the `clang-format.bash` script to update all our C and C++ code to a
new style defined by `.clang-format`, now with "east const" enforcement.
Use `clang-format` version 18.

* If you reached this commit for a line in `git blame`, re-run the blame
  operation starting at the parent of this commit to see older history
  for the content.

* See the parent commit for instructions to rebase a change across this
  style transition commit.

Issue: #26123
2025-01-23 13:09:50 -05:00

77 lines
2.4 KiB
C++

/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
#include "cmInstallCxxModuleBmiGenerator.h"
#include <ostream>
#include <utility>
#include "cmGeneratorExpression.h"
#include "cmGeneratorTarget.h"
#include "cmGlobalGenerator.h"
#include "cmListFileCache.h"
#include "cmLocalGenerator.h"
#include "cmOutputConverter.h"
#include "cmScriptGenerator.h"
#include "cmStringAlgorithms.h"
cmInstallCxxModuleBmiGenerator::cmInstallCxxModuleBmiGenerator(
std::string target, std::string const& dest, std::string file_permissions,
std::vector<std::string> const& configurations, std::string const& component,
MessageLevel message, bool exclude_from_all, bool optional,
cmListFileBacktrace backtrace)
: cmInstallGenerator(dest, configurations, component, message,
exclude_from_all, false, std::move(backtrace))
, TargetName(std::move(target))
, FilePermissions(std::move(file_permissions))
, Optional(optional)
{
this->ActionsPerConfig = true;
}
cmInstallCxxModuleBmiGenerator::~cmInstallCxxModuleBmiGenerator() = default;
bool cmInstallCxxModuleBmiGenerator::Compute(cmLocalGenerator* lg)
{
this->LocalGenerator = lg;
this->Target = lg->FindLocalNonAliasGeneratorTarget(this->TargetName);
if (!this->Target) {
// If no local target has been found, find it in the global scope.
this->Target =
lg->GetGlobalGenerator()->FindGeneratorTarget(this->TargetName);
}
return true;
}
std::string cmInstallCxxModuleBmiGenerator::GetScriptLocation(
std::string const& config) const
{
char const* config_name = config.c_str();
if (config.empty()) {
config_name = "noconfig";
}
return cmStrCat(this->Target->GetSupportDirectory(),
"/install-cxx-module-bmi-", config_name, ".cmake");
}
std::string cmInstallCxxModuleBmiGenerator::GetDestination(
std::string const& config) const
{
return cmGeneratorExpression::Evaluate(this->Destination,
this->LocalGenerator, config);
}
void cmInstallCxxModuleBmiGenerator::GenerateScriptForConfig(
std::ostream& os, std::string const& config, Indent indent)
{
auto const& loc = this->GetScriptLocation(config);
if (loc.empty()) {
return;
}
os << indent << "include(\""
<< cmOutputConverter::EscapeForCMake(
loc, cmOutputConverter::WrapQuotes::NoWrap)
<< "\" OPTIONAL)\n";
}