github的一些开源项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
542 B

  1. set(PACKAGE_VERSION_MAJOR @PCRE2_MAJOR@)
  2. set(PACKAGE_VERSION_MINOR @PCRE2_MINOR@)
  3. set(PACKAGE_VERSION_PATCH 0)
  4. set(PACKAGE_VERSION @PCRE2_MAJOR@.@PCRE2_MINOR@.0)
  5. # Check whether the requested PACKAGE_FIND_VERSION is compatible
  6. if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION OR
  7. PACKAGE_VERSION_MAJOR GREATER PACKAGE_FIND_VERSION_MAJOR)
  8. set(PACKAGE_VERSION_COMPATIBLE FALSE)
  9. else()
  10. set(PACKAGE_VERSION_COMPATIBLE TRUE)
  11. if(PACKAGE_VERSION VERSION_EQUAL PACKAGE_FIND_VERSION)
  12. set(PACKAGE_VERSION_EXACT TRUE)
  13. endif()
  14. endif()