The source code and dockerfile for the GSW2024 AI Lab.
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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

57 lines
2.1 KiB

4 weeks ago
  1. # - Find the Catch test framework or download it (single header)
  2. #
  3. # This is a quick module for internal use. It assumes that Catch is
  4. # REQUIRED and that a minimum version is provided (not EXACT). If
  5. # a suitable version isn't found locally, the single header file
  6. # will be downloaded and placed in the build dir: PROJECT_BINARY_DIR.
  7. #
  8. # This code sets the following variables:
  9. # CATCH_INCLUDE_DIR - path to catch.hpp
  10. # CATCH_VERSION - version number
  11. if(NOT Catch_FIND_VERSION)
  12. message(FATAL_ERROR "A version number must be specified.")
  13. elseif(Catch_FIND_REQUIRED)
  14. message(FATAL_ERROR "This module assumes Catch is not required.")
  15. elseif(Catch_FIND_VERSION_EXACT)
  16. message(FATAL_ERROR "Exact version numbers are not supported, only minimum.")
  17. endif()
  18. # Extract the version number from catch.hpp
  19. function(_get_catch_version)
  20. file(STRINGS "${CATCH_INCLUDE_DIR}/catch.hpp" version_line REGEX "Catch v.*" LIMIT_COUNT 1)
  21. if(version_line MATCHES "Catch v([0-9]+)\\.([0-9]+)\\.([0-9]+)")
  22. set(CATCH_VERSION "${CMAKE_MATCH_1}.${CMAKE_MATCH_2}.${CMAKE_MATCH_3}" PARENT_SCOPE)
  23. endif()
  24. endfunction()
  25. # Download the single-header version of Catch
  26. function(_download_catch version destination_dir)
  27. message(STATUS "Downloading catch v${version}...")
  28. set(url https://github.com/philsquared/Catch/releases/download/v${version}/catch.hpp)
  29. file(DOWNLOAD ${url} "${destination_dir}/catch.hpp" STATUS status)
  30. list(GET status 0 error)
  31. if(error)
  32. message(FATAL_ERROR "Could not download ${url}")
  33. endif()
  34. set(CATCH_INCLUDE_DIR "${destination_dir}" CACHE INTERNAL "")
  35. endfunction()
  36. # Look for catch locally
  37. find_path(CATCH_INCLUDE_DIR NAMES catch.hpp PATH_SUFFIXES catch)
  38. if(CATCH_INCLUDE_DIR)
  39. _get_catch_version()
  40. endif()
  41. # Download the header if it wasn't found or if it's outdated
  42. if(NOT CATCH_VERSION OR CATCH_VERSION VERSION_LESS ${Catch_FIND_VERSION})
  43. if(DOWNLOAD_CATCH)
  44. _download_catch(${Catch_FIND_VERSION} "${PROJECT_BINARY_DIR}/catch/")
  45. _get_catch_version()
  46. else()
  47. set(CATCH_FOUND FALSE)
  48. return()
  49. endif()
  50. endif()
  51. set(CATCH_FOUND TRUE)