| 1502 | } |
| 1503 | |
| 1504 | bool cmGeneratorTarget::HasMacOSXRpathInstallNameDir( |
| 1505 | std::string const& config) const |
| 1506 | { |
| 1507 | TargetPtrToBoolMap& cache = this->MacOSXRpathInstallNameDirCache[config]; |
| 1508 | auto const lookup = cache.find(this->Target); |
| 1509 | |
| 1510 | if (lookup != cache.cend()) { |
| 1511 | return lookup->second; |
| 1512 | } |
| 1513 | |
| 1514 | bool const result = this->DetermineHasMacOSXRpathInstallNameDir(config); |
| 1515 | cache[this->Target] = result; |
| 1516 | return result; |
| 1517 | } |
| 1518 | |
| 1519 | bool cmGeneratorTarget::DetermineHasMacOSXRpathInstallNameDir( |
| 1520 | std::string const& config) const |
no test coverage detected