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

74 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. */
#pragma once
#include <iosfwd>
#include <string>
#include <vector>
#include "cmInstallGenerator.h"
class cmInstallRuntimeDependencySet;
class cmListFileBacktrace;
class cmLocalGenerator;
class cmInstallRuntimeDependencySetGenerator : public cmInstallGenerator
{
public:
enum class DependencyType
{
Library,
Framework,
};
cmInstallRuntimeDependencySetGenerator(
DependencyType type, cmInstallRuntimeDependencySet* dependencySet,
std::vector<std::string> installRPaths, bool noInstallRPath,
std::string installNameDir, bool noInstallName, char const* depsVar,
char const* rpathPrefix, char const* tmpVarPrefix, std::string destination,
std::vector<std::string> const& configurations, std::string component,
std::string permissions, MessageLevel message, bool exclude_from_all,
cmListFileBacktrace backtrace);
bool Compute(cmLocalGenerator* lg) override;
DependencyType GetDependencyType() const { return this->Type; }
cmInstallRuntimeDependencySet* GetRuntimeDependencySet() const
{
return this->DependencySet;
}
std::string GetDestination(std::string const& config) const;
protected:
void GenerateScriptForConfig(std::ostream& os, std::string const& config,
Indent indent) override;
private:
DependencyType Type;
cmInstallRuntimeDependencySet* DependencySet;
std::vector<std::string> InstallRPaths;
bool NoInstallRPath;
std::string InstallNameDir;
bool NoInstallName;
std::string Permissions;
char const* DepsVar;
char const* RPathPrefix;
char const* TmpVarPrefix;
cmLocalGenerator* LocalGenerator = nullptr;
void GenerateAppleLibraryScript(
std::ostream& os, std::string const& config,
std::vector<std::string> const& evaluatedRPaths, Indent indent);
void GenerateAppleFrameworkScript(
std::ostream& os, std::string const& config,
std::vector<std::string> const& evaluatedRPaths, Indent indent);
void GenerateInstallNameFixup(
std::ostream& os, std::string const& config,
std::vector<std::string> const& evaluatedRPaths,
std::string const& filename, std::string const& depName, Indent indent);
void GenerateStripFixup(std::ostream& os, std::string const& config,
std::string const& depName, Indent indent);
};