| 3447 | } |
| 3448 | |
| 3449 | cmValue cmTarget::GetLocation(std::string const& base, |
| 3450 | std::string const& suffix) const |
| 3451 | { |
| 3452 | cmValue value = this->GetProperty(cmStrCat(base, suffix)); |
| 3453 | if (value || suffix.empty()) { |
| 3454 | return value; |
| 3455 | } |
| 3456 | return this->GetProperty(base); |
| 3457 | } |
| 3458 | |
| 3459 | bool cmTarget::GetLocation(std::string const& config, cmValue& loc, |
| 3460 | cmValue& imp, std::string& suffix) const |
no test coverage detected