| 4239 | } |
| 4240 | |
| 4241 | void cmGeneratorTarget::GetTargetVersionFallback( |
| 4242 | std::string const& property, std::string const& fallback_property, |
| 4243 | int& major, int& minor, int& patch) const |
| 4244 | { |
| 4245 | if (this->GetProperty(property)) { |
| 4246 | this->GetTargetVersion(property, major, minor, patch); |
| 4247 | } else { |
| 4248 | this->GetTargetVersion(fallback_property, major, minor, patch); |
| 4249 | } |
| 4250 | } |
| 4251 | |
| 4252 | void cmGeneratorTarget::GetTargetVersion(std::string const& property, |
| 4253 | int& major, int& minor, |
no test coverage detected