| 6526 | } |
| 6527 | |
| 6528 | std::string cmGeneratorTarget::GetPropertyOrDefault( |
| 6529 | std::string const& property, std::string defaultValue) const |
| 6530 | { |
| 6531 | if (cmValue name = this->GetProperty(property)) { |
| 6532 | return *name; |
| 6533 | } |
| 6534 | return defaultValue; |
| 6535 | } |
no test coverage detected