diff options
Diffstat (limited to 'vcpkg/ports/tsl-array-hash')
| -rw-r--r-- | vcpkg/ports/tsl-array-hash/portfile.cmake | 20 | ||||
| -rw-r--r-- | vcpkg/ports/tsl-array-hash/vcpkg.json | 15 |
2 files changed, 35 insertions, 0 deletions
diff --git a/vcpkg/ports/tsl-array-hash/portfile.cmake b/vcpkg/ports/tsl-array-hash/portfile.cmake new file mode 100644 index 0000000..cc349b6 --- /dev/null +++ b/vcpkg/ports/tsl-array-hash/portfile.cmake @@ -0,0 +1,20 @@ +set(VCPKG_BUILD_TYPE release) # Header-only library + +vcpkg_from_github( + OUT_SOURCE_PATH SOURCE_PATH + REPO Tessil/array-hash + REF v${VERSION} + SHA512 7aee866aed1c21b838124fda6b11365fdbc04ec8fe7969fbb52c6a30fb81fa945130f85c596a06a9bd8b3235bb6f73444013c719de4fba2d7abc3be4549aa501 + HEAD_REF master +) + +vcpkg_cmake_configure( + SOURCE_PATH "${SOURCE_PATH}" +) + +vcpkg_cmake_install() +vcpkg_cmake_config_fixup(CONFIG_PATH "share/cmake/${PORT}") + +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug") + +vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE") diff --git a/vcpkg/ports/tsl-array-hash/vcpkg.json b/vcpkg/ports/tsl-array-hash/vcpkg.json new file mode 100644 index 0000000..d798b37 --- /dev/null +++ b/vcpkg/ports/tsl-array-hash/vcpkg.json @@ -0,0 +1,15 @@ +{ + "name": "tsl-array-hash", + "version": "0.7.2", + "description": "C++ implementation of a memory efficient hash map and hash set", + "dependencies": [ + { + "name": "vcpkg-cmake", + "host": true + }, + { + "name": "vcpkg-cmake-config", + "host": true + } + ] +} |