| 163 | } |
| 164 | |
| 165 | std::string cmExportTryCompileFileGenerator::InstallNameDir( |
| 166 | cmGeneratorTarget const* target, std::string const& config) |
| 167 | { |
| 168 | std::string install_name_dir; |
| 169 | |
| 170 | cmMakefile* mf = target->Target->GetMakefile(); |
| 171 | if (mf->IsOn("CMAKE_PLATFORM_HAS_INSTALLNAME")) { |
| 172 | install_name_dir = target->GetInstallNameDirForBuildTree(config); |
| 173 | } |
| 174 | |
| 175 | return install_name_dir; |
| 176 | } |
| 177 | |
| 178 | std::string cmExportTryCompileFileGenerator::GetFileSetDirectories( |
| 179 | cmGeneratorTarget* /*gte*/, cmFileSet* fileSet, cmTargetExport const* /*te*/) |
nothing calls this directly
no test coverage detected