diff options
| author | Victor Romero <romerosanchezv@gmail.com> | 2019-06-12 11:37:19 -0700 |
|---|---|---|
| committer | Victor Romero <romerosanchezv@gmail.com> | 2019-06-12 11:37:19 -0700 |
| commit | 92444393148ab0bc89de6ce1cae945cee428a091 (patch) | |
| tree | a443d63129d93dd729438929bce402b80f1c50c1 /ports/simde | |
| parent | 874eadc574b94a05607a8408958401a524c10447 (diff) | |
| parent | 59a8a9c6248ed230b19028a44484ae5f06db697d (diff) | |
| download | vcpkg-92444393148ab0bc89de6ce1cae945cee428a091.tar.gz vcpkg-92444393148ab0bc89de6ce1cae945cee428a091.zip | |
Merge branch 'master' of https://github.com/Microsoft/vcpkg into add_libraqm
Diffstat (limited to 'ports/simde')
| -rw-r--r-- | ports/simde/CONTROL | 3 | ||||
| -rw-r--r-- | ports/simde/portfile.cmake | 16 |
2 files changed, 19 insertions, 0 deletions
diff --git a/ports/simde/CONTROL b/ports/simde/CONTROL new file mode 100644 index 000000000..7f70f4911 --- /dev/null +++ b/ports/simde/CONTROL @@ -0,0 +1,3 @@ +Source: simde
+Version: 2019-06-05
+Description: Implementations of SIMD instruction sets for systems which don't natively support them
diff --git a/ports/simde/portfile.cmake b/ports/simde/portfile.cmake new file mode 100644 index 000000000..e79594ace --- /dev/null +++ b/ports/simde/portfile.cmake @@ -0,0 +1,16 @@ +# header-only library
+
+include(vcpkg_common_functions)
+
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO nemequ/simde
+ REF 6e3ba90605361069cf3422c44242c79171b87275
+ SHA512 d62ff40882c2b3a17c900104b36ae77137cbb77917d409cba1c0693fdcf317a38ff3184deaaecca0ef31d88393bebf0102a8ab57a23ad5d0cee2d3e5fe799f6a
+ HEAD_REF master
+)
+
+file(COPY ${SOURCE_PATH}/simde DESTINATION ${CURRENT_PACKAGES_DIR}/include)
+
+# Handle copyright
+configure_file(${SOURCE_PATH}/COPYING ${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright COPYONLY)
|
