CMake/Source/cmCPackPropertiesGenerator.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

47 lines
1.4 KiB
C++

#include "cmCPackPropertiesGenerator.h"
#include <map>
#include <memory>
#include <ostream>
#include "cmGeneratorExpression.h"
#include "cmInstalledFile.h"
#include "cmOutputConverter.h"
cmCPackPropertiesGenerator::cmCPackPropertiesGenerator(
cmLocalGenerator* lg, cmInstalledFile const& installedFile,
std::vector<std::string> const& configurations)
: cmScriptGenerator("CPACK_BUILD_CONFIG", configurations)
, LG(lg)
, InstalledFile(installedFile)
{
this->ActionsPerConfig = true;
}
void cmCPackPropertiesGenerator::GenerateScriptForConfig(
std::ostream& os, std::string const& config, Indent indent)
{
std::string const& expandedFileName =
this->InstalledFile.GetNameExpression().Evaluate(this->LG, config);
cmInstalledFile::PropertyMapType const& properties =
this->InstalledFile.GetProperties();
for (cmInstalledFile::PropertyMapType::value_type const& i : properties) {
std::string const& name = i.first;
cmInstalledFile::Property const& property = i.second;
os << indent << "set_property(INSTALL "
<< cmOutputConverter::EscapeForCMake(expandedFileName) << " PROPERTY "
<< cmOutputConverter::EscapeForCMake(name);
for (cmInstalledFile::ExpressionVectorType::value_type const& j :
property.ValueExpressions) {
std::string value = j->Evaluate(this->LG, config);
os << " " << cmOutputConverter::EscapeForCMake(value);
}
os << ")\n";
}
}