| 4233 | } |
| 4234 | |
| 4235 | void cmGeneratorTarget::GetTargetVersion(int& major, int& minor) const |
| 4236 | { |
| 4237 | int patch; |
| 4238 | this->GetTargetVersion("VERSION", major, minor, patch); |
| 4239 | } |
| 4240 | |
| 4241 | void cmGeneratorTarget::GetTargetVersionFallback( |
| 4242 | std::string const& property, std::string const& fallback_property, |
no test coverage detected