2
0

md5cmp.cmake 304 B

123456789101112131415
  1. if(NOT MD5)
  2. message(FATAL_ERROR "MD5 not specified")
  3. endif()
  4. if(NOT FILE)
  5. message(FATAL_ERROR "FILE not specified")
  6. endif()
  7. file(MD5 ${FILE} MD5FILE)
  8. if(NOT MD5 STREQUAL MD5FILE)
  9. message(FATAL_ERROR "MD5 of ${FILE} should be ${MD5}, not ${MD5FILE}.")
  10. else()
  11. message(STATUS "${MD5}: OK")
  12. endif()