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

Method GetRPATH

Source/cmGeneratorTarget.cxx:4727–4740  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4725}
4726
4727bool cmGeneratorTarget::GetRPATH(std::string const& config,
4728 std::string const& prop,
4729 std::string& rpath) const
4730{
4731 cmValue value = this->GetProperty(prop);
4732 if (!value) {
4733 return false;
4734 }
4735
4736 rpath =
4737 cmGeneratorExpression::Evaluate(*value, this->LocalGenerator, config);
4738
4739 return true;
4740}
4741
4742cmGeneratorTarget::ImportInfo const* cmGeneratorTarget::GetImportInfo(
4743 std::string const& config) const

Callers 2

GetBuildRPATHMethod · 0.95
GetInstallRPATHMethod · 0.95

Calls 1

GetPropertyMethod · 0.95

Tested by

no test coverage detected