| 4725 | } |
| 4726 | |
| 4727 | bool 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 | |
| 4742 | cmGeneratorTarget::ImportInfo const* cmGeneratorTarget::GetImportInfo( |
| 4743 | std::string const& config) const |
no test coverage detected