| 43 | } |
| 44 | |
| 45 | bool cmCPackIFWCommon::IsVersionLess(char const* version) const |
| 46 | { |
| 47 | if (!this->Generator) { |
| 48 | return false; |
| 49 | } |
| 50 | |
| 51 | return cmSystemTools::VersionCompare( |
| 52 | cmSystemTools::OP_LESS, this->Generator->FrameworkVersion, version); |
| 53 | } |
| 54 | |
| 55 | bool cmCPackIFWCommon::IsVersionGreater(char const* version) const |
| 56 | { |
no test coverage detected