diff --git a/ports/catch/CONTROL b/ports/catch/CONTROL new file mode 100644 index 0000000000..893563e15d --- /dev/null +++ b/ports/catch/CONTROL @@ -0,0 +1,3 @@ +Source: catch +Version: 1.5.7 +Description: C++ Automated Test Cases in Headers diff --git a/ports/catch/portfile.cmake b/ports/catch/portfile.cmake new file mode 100644 index 0000000000..bd55bb9ca7 --- /dev/null +++ b/ports/catch/portfile.cmake @@ -0,0 +1,29 @@ +# Common Ambient Variables: +# VCPKG_ROOT_DIR = +# TARGET_TRIPLET is the current triplet (x86-windows, etc) +# PORT is the current port name (zlib, etc) +# CURRENT_BUILDTREES_DIR = ${VCPKG_ROOT_DIR}\buildtrees\${PORT} +# CURRENT_PACKAGES_DIR = ${VCPKG_ROOT_DIR}\packages\${PORT}_${TARGET_TRIPLET} +# + +include(${CMAKE_TRIPLET_FILE}) +include(vcpkg_common_functions) + +vcpkg_download_distfile(HEADER + URLS "https://raw.githubusercontent.com/philsquared/Catch/master/single_include/catch.hpp" + #https://raw.githubusercontent.com/philsquared/Catch/master/LICENSE_1_0.txt + FILENAME "catch.hpp" + SHA512 64eec1c291826ef235433729dc18f150e47d2a761f80ec47264be08b3f756b310c6e3aa2c6c3c7b5e2f345f86489d561d9a694506654823077d0f6c7c22df7cd +) + +vcpkg_download_distfile(LICENSE + URLS "https://raw.githubusercontent.com/philsquared/Catch/master/LICENSE_1_0.txt" + FILENAME "License_1_0.txt" + SHA512 d6078467835dba8932314c1c1e945569a64b065474d7aced27c9a7acc391d52e9f234138ed9f1aa9cd576f25f12f557e0b733c14891d42c16ecdc4a7bd4d60b8 +) + +file(COPY ${HEADER} DESTINATION ${CURRENT_PACKAGES_DIR}/include ) +file(COPY ${LICENSE} DESTINATION ${CURRENT_PACKAGES_DIR}/share/catch ) +file(RENAME ${CURRENT_PACKAGES_DIR}/share/catch/LICENSE_1_0.txt ${CURRENT_PACKAGES_DIR}/share/catch/copyright) + +