| 249 | } |
| 250 | |
| 251 | std::string cmExportBuildFileGenerator::InstallNameDir( |
| 252 | cmGeneratorTarget const* target, std::string const& config) |
| 253 | { |
| 254 | std::string install_name_dir; |
| 255 | |
| 256 | cmMakefile* mf = target->Target->GetMakefile(); |
| 257 | if (mf->IsOn("CMAKE_PLATFORM_HAS_INSTALLNAME")) { |
| 258 | install_name_dir = target->GetInstallNameDirForBuildTree(config); |
| 259 | } |
| 260 | |
| 261 | return install_name_dir; |
| 262 | } |
| 263 | |
| 264 | bool cmExportBuildFileGenerator::PopulateInterfaceProperties( |
| 265 | cmGeneratorTarget const* target, ImportPropertyMap& properties) |
no test coverage detected