| 680 | } |
| 681 | |
| 682 | void cmExportCMakeConfigGenerator::SetRequiredCMakeVersion(unsigned int major, |
| 683 | unsigned int minor, |
| 684 | unsigned int patch) |
| 685 | { |
| 686 | if (CMake_VERSION_ENCODE(major, minor, patch) > |
| 687 | CMake_VERSION_ENCODE(this->RequiredCMakeVersionMajor, |
| 688 | this->RequiredCMakeVersionMinor, |
| 689 | this->RequiredCMakeVersionPatch)) { |
| 690 | this->RequiredCMakeVersionMajor = major; |
| 691 | this->RequiredCMakeVersionMinor = minor; |
| 692 | this->RequiredCMakeVersionPatch = patch; |
| 693 | } |
| 694 | } |
no outgoing calls
no test coverage detected