MCPcopy Create free account
hub / github.com/Kitware/CMake / HasMacOSXRpathInstallNameDir

Method HasMacOSXRpathInstallNameDir

Source/cmGeneratorTarget.cxx:1504–1517  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1502}
1503
1504bool 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
1519bool cmGeneratorTarget::DetermineHasMacOSXRpathInstallNameDir(
1520 std::string const& config) const

Callers 3

AddLibraryRuntimeInfoMethod · 0.80
GenerateMethod · 0.80

Calls 3

cendMethod · 0.80
findMethod · 0.45

Tested by

no test coverage detected