diff options
| author | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
|---|---|---|
| committer | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
| commit | 54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch) | |
| tree | d915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/simde | |
Diffstat (limited to 'vcpkg/ports/simde')
| -rw-r--r-- | vcpkg/ports/simde/portfile.cmake | 13 | ||||
| -rw-r--r-- | vcpkg/ports/simde/vcpkg.json | 7 |
2 files changed, 20 insertions, 0 deletions
diff --git a/vcpkg/ports/simde/portfile.cmake b/vcpkg/ports/simde/portfile.cmake new file mode 100644 index 0000000..aa1f1c3 --- /dev/null +++ b/vcpkg/ports/simde/portfile.cmake @@ -0,0 +1,13 @@ +# header-only library
+
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO simd-everywhere/simde
+ REF "v${VERSION}"
+ SHA512 4e42d7140c0afae507773527c6c0c07e6f0cdad59a1d42ebcf4bd223fc9f71e91a2e3db7746aca3c0c5ad2a13333c2322ce1e384c7d699ddfe33bed6f107aec5
+ HEAD_REF master
+)
+
+file(COPY "${SOURCE_PATH}/simde" DESTINATION "${CURRENT_PACKAGES_DIR}/include")
+
+vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/COPYING")
diff --git a/vcpkg/ports/simde/vcpkg.json b/vcpkg/ports/simde/vcpkg.json new file mode 100644 index 0000000..a8ee02d --- /dev/null +++ b/vcpkg/ports/simde/vcpkg.json @@ -0,0 +1,7 @@ +{ + "name": "simde", + "version": "0.8.2", + "description": "Implementations of SIMD instruction sets for systems which don't natively support them", + "homepage": "https://github.com/simd-everywhere/simde", + "license": "MIT" +} |