aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Mittelette <ericmitt@corp.microsoft.com>2016-10-20 14:17:28 -0700
committerEric Mittelette <ericmitt@corp.microsoft.com>2016-10-20 14:17:28 -0700
commit37d6623ea59cb85d524b184c8deb720732497a79 (patch)
treeb0fc5f6aca67345bd90466fc5f6bbc856e7882ce
parent64ae9efffa71468835bcf9ee5b8c2026b86774b0 (diff)
downloadvcpkg-37d6623ea59cb85d524b184c8deb720732497a79.tar.gz
vcpkg-37d6623ea59cb85d524b184c8deb720732497a79.zip
adding catch
-rw-r--r--ports/catch/CONTROL3
-rw-r--r--ports/catch/portfile.cmake29
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)
+
+