| 200 | } |
| 201 | |
| 202 | std::string cmExportInstallPackageInfoGenerator::InstallNameDir( |
| 203 | cmGeneratorTarget const* target, std::string const& config) |
| 204 | { |
| 205 | std::string install_name_dir; |
| 206 | |
| 207 | cmMakefile* mf = target->Target->GetMakefile(); |
| 208 | if (mf->IsOn("CMAKE_PLATFORM_HAS_INSTALLNAME")) { |
| 209 | install_name_dir = |
| 210 | target->GetInstallNameDirForInstallTree(config, "@prefix@"); |
| 211 | } |
| 212 | |
| 213 | return install_name_dir; |
| 214 | } |
| 215 | |
| 216 | std::string cmExportInstallPackageInfoGenerator::GetCxxModulesDirectory() const |
| 217 | { |
nothing calls this directly
no test coverage detected