| 32 | #include "cmTargetExport.h" |
| 33 | |
| 34 | cmExportInstallSbomGenerator::cmExportInstallSbomGenerator( |
| 35 | cmInstallExportGenerator* iegen, cmSbomArguments args) |
| 36 | : cmExportSbomGenerator(std::move(args)) |
| 37 | , cmExportInstallFileGenerator(iegen) |
| 38 | { |
| 39 | this->SetNamespace(cmStrCat(this->GetPackageName(), "::"_s)); |
| 40 | } |
| 41 | |
| 42 | std::string cmExportInstallSbomGenerator::GetConfigImportFileGlob() const |
| 43 | { |
nothing calls this directly
no test coverage detected