ExternalProject-verify.cmake.in 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. #=============================================================================
  2. # Copyright 2008-2013 Kitware, Inc.
  3. # Copyright 2016 Ruslan Baratov
  4. #
  5. # Distributed under the OSI-approved BSD License (the "License");
  6. # see accompanying file Copyright.txt for details.
  7. #
  8. # This software is distributed WITHOUT ANY WARRANTY; without even the
  9. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  10. # See the License for more information.
  11. #=============================================================================
  12. # (To distribute this file outside of CMake, substitute the full
  13. # License text for the above reference.)
  14. cmake_minimum_required(VERSION 3.5)
  15. if("@LOCAL@" STREQUAL "")
  16. message(FATAL_ERROR "LOCAL can't be empty")
  17. endif()
  18. if(NOT EXISTS "@LOCAL@")
  19. message(FATAL_ERROR "File not found: @LOCAL@")
  20. endif()
  21. if("@ALGO@" STREQUAL "")
  22. message(WARNING "File will not be verified since no URL_HASH specified")
  23. return()
  24. endif()
  25. if("@EXPECT_VALUE@" STREQUAL "")
  26. message(FATAL_ERROR "EXPECT_VALUE can't be empty")
  27. endif()
  28. message(STATUS "verifying file...
  29. file='@LOCAL@'")
  30. file("@ALGO@" "@LOCAL@" actual_value)
  31. if(NOT "${actual_value}" STREQUAL "@EXPECT_VALUE@")
  32. message(FATAL_ERROR "error: @ALGO@ hash of
  33. @LOCAL@
  34. does not match expected value
  35. expected: '@EXPECT_VALUE@'
  36. actual: '${actual_value}'
  37. ")
  38. endif()
  39. message(STATUS "verifying file... done")