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/rebind | |
Diffstat (limited to 'vcpkg/ports/rebind')
| -rw-r--r-- | vcpkg/ports/rebind/portfile.cmake | 13 | ||||
| -rw-r--r-- | vcpkg/ports/rebind/vcpkg.json | 13 |
2 files changed, 26 insertions, 0 deletions
diff --git a/vcpkg/ports/rebind/portfile.cmake b/vcpkg/ports/rebind/portfile.cmake new file mode 100644 index 0000000..9ae8854 --- /dev/null +++ b/vcpkg/ports/rebind/portfile.cmake @@ -0,0 +1,13 @@ +vcpkg_from_github( + OUT_SOURCE_PATH SOURCE_PATH + REPO Curve/rebind + REF "v${VERSION}" + SHA512 8c310eba61a65268fb9820aab0529d04900d1e95544e4fbc6c70a004e4cf64152ab8e2b636d6bd5ad16a381dcbad03f303d176848aedd6e3b29e3037371cf624 + HEAD_REF master +) + +vcpkg_cmake_configure(SOURCE_PATH ${SOURCE_PATH}) +vcpkg_cmake_install() + +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug") +vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE") diff --git a/vcpkg/ports/rebind/vcpkg.json b/vcpkg/ports/rebind/vcpkg.json new file mode 100644 index 0000000..2f6c2a4 --- /dev/null +++ b/vcpkg/ports/rebind/vcpkg.json @@ -0,0 +1,13 @@ +{ + "name": "rebind", + "version": "5.2.2", + "description": "A C++23 reflection library for aggregates and enums", + "homepage": "https://github.com/Curve/rebind", + "license": "MIT", + "dependencies": [ + { + "name": "vcpkg-cmake", + "host": true + } + ] +} |