/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmInstallPackageInfoExportGenerator.h" #include #include #include "cmExportInstallFileGenerator.h" #include "cmExportInstallPackageInfoGenerator.h" #include "cmListFileCache.h" #include "cmPackageInfoArguments.h" class cmExportSet; cmInstallPackageInfoExportGenerator::cmInstallPackageInfoExportGenerator( cmExportSet* exportSet, std::string destination, std::string filePermissions, std::vector const& configurations, std::string component, MessageLevel message, bool excludeFromAll, cmPackageInfoArguments arguments, std::string cxxModulesDirectory, cmListFileBacktrace backtrace) : cmInstallExportGenerator( exportSet, std::move(destination), std::move(filePermissions), configurations, std::move(component), message, excludeFromAll, arguments.GetPackageFileName(), arguments.GetNamespace(), std::move(cxxModulesDirectory), std::move(backtrace)) { this->EFGen = cm::make_unique( this, std::move(arguments)); } cmInstallPackageInfoExportGenerator::~cmInstallPackageInfoExportGenerator() = default;