| 227 | } |
| 228 | |
| 229 | cmValue cmGeneratorTarget::GetProperty(std::string const& prop) const |
| 230 | { |
| 231 | if (cmValue result = |
| 232 | cmTargetPropertyComputer::GetProperty(this, prop, *this->Makefile)) { |
| 233 | return result; |
| 234 | } |
| 235 | if (cmSystemTools::GetFatalErrorOccurred()) { |
| 236 | return nullptr; |
| 237 | } |
| 238 | return this->Target->GetProperty(prop); |
| 239 | } |
| 240 | |
| 241 | std::string const& cmGeneratorTarget::GetSafeProperty( |
| 242 | std::string const& prop) const |
no outgoing calls
no test coverage detected