| 344 | } |
| 345 | |
| 346 | std::string cmExportInstallFileGenerator::InstallNameDir( |
| 347 | cmGeneratorTarget const* target, std::string const& config) |
| 348 | { |
| 349 | std::string install_name_dir; |
| 350 | |
| 351 | cmMakefile* mf = target->Target->GetMakefile(); |
| 352 | if (mf->IsOn("CMAKE_PLATFORM_HAS_INSTALLNAME")) { |
| 353 | auto const& prefix = this->GetInstallPrefix(); |
| 354 | install_name_dir = target->GetInstallNameDirForInstallTree(config, prefix); |
| 355 | } |
| 356 | |
| 357 | return install_name_dir; |
| 358 | } |
| 359 | |
| 360 | std::string cmExportInstallFileGenerator::GetCxxModuleFile() const |
| 361 | { |
nothing calls this directly
no test coverage detected