| 648 | } |
| 649 | |
| 650 | std::string cmExportCMakeConfigGenerator::GetCxxModuleFile( |
| 651 | std::string const& name) const |
| 652 | { |
| 653 | auto const& cxxModuleDirname = this->GetCxxModulesDirectory(); |
| 654 | if (cxxModuleDirname.empty()) { |
| 655 | return {}; |
| 656 | } |
| 657 | |
| 658 | return cmStrCat(cmSystemTools::GetFilenamePath(this->MainImportFile), '/', |
| 659 | cxxModuleDirname, "/cxx-modules-", name, ".cmake"); |
| 660 | } |
| 661 | |
| 662 | void cmExportCMakeConfigGenerator::GenerateCxxModuleInformation( |
| 663 | std::string const& name, std::ostream& os) |
no test coverage detected