diff options
| author | Robert Schumacher <roschuma@microsoft.com> | 2016-10-20 14:29:28 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-10-20 14:29:28 -0700 |
| commit | 7d2abe877016299f9d6d5f93b6fb412545895cbd (patch) | |
| tree | 4c4b3babb5d361b5db69b3e3e0cb9fc2f404f089 | |
| parent | 1a6b661eef9faef0466dba67d84b45cdbefa45a6 (diff) | |
| parent | 37d6623ea59cb85d524b184c8deb720732497a79 (diff) | |
| download | vcpkg-7d2abe877016299f9d6d5f93b6fb412545895cbd.tar.gz vcpkg-7d2abe877016299f9d6d5f93b6fb412545895cbd.zip | |
Merge pull request #195 from Microsoft/catch_pr
adding catch
| -rw-r--r-- | ports/catch/CONTROL | 3 | ||||
| -rw-r--r-- | ports/catch/portfile.cmake | 29 |
2 files changed, 32 insertions, 0 deletions
diff --git a/ports/catch/CONTROL b/ports/catch/CONTROL new file mode 100644 index 000000000..893563e15 --- /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 000000000..bd55bb9ca --- /dev/null +++ b/ports/catch/portfile.cmake @@ -0,0 +1,29 @@ +# Common Ambient Variables: +# VCPKG_ROOT_DIR = <C:\path\to\current\vcpkg> +# 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) + + |
