diff options
| author | Park DongHa <luncliff@gmail.com> | 2021-02-09 10:54:38 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-08 17:54:38 -0800 |
| commit | 8317bf972a8f48559cb96e8fbc2e43fbff978a82 (patch) | |
| tree | 98920fe39d3986543cff6e1de91230c88187a402 /ports | |
| parent | 7ed39c5b95dc0cd8a0569636c659124bc6e8cfa9 (diff) | |
| download | vcpkg-8317bf972a8f48559cb96e8fbc2e43fbff978a82.tar.gz vcpkg-8317bf972a8f48559cb96e8fbc2e43fbff978a82.zip | |
[metrohash] support iOS triplets (#16035)
* [metrohash] ignore arm
* this change will allow android/ios triplets
* [metrohash] update baseline
* [metrohash] check platform variables
* [metrohash] fix wrong git-tee
Diffstat (limited to 'ports')
| -rw-r--r-- | ports/metrohash/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | ports/metrohash/vcpkg.json | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ports/metrohash/CMakeLists.txt b/ports/metrohash/CMakeLists.txt index 1c5081203..3d6c3d59d 100644 --- a/ports/metrohash/CMakeLists.txt +++ b/ports/metrohash/CMakeLists.txt @@ -8,7 +8,7 @@ add_library(metrohash ) list(APPEND metro_headers src/metrohash.h src/metrohash64.h src/metrohash128.h) -if(NOT ANDROID) +if(NOT ANDROID AND NOT IOS) list(APPEND metro_headers src/metrohash128crc.h) target_sources(metrohash PRIVATE src/metrohash128crc.cpp) if(CMAKE_CXX_COMPILER_ID MATCHES Clang) diff --git a/ports/metrohash/vcpkg.json b/ports/metrohash/vcpkg.json index bfb1e6722..a439e2c6a 100644 --- a/ports/metrohash/vcpkg.json +++ b/ports/metrohash/vcpkg.json @@ -1,7 +1,7 @@ { "name": "metrohash", "version-string": "1.1.3", - "port-version": 2, + "port-version": 3, "description": "MetroHash is a set of state-of-the-art hash functions for non-cryptographic use cases", "homepage": "https://github.com/jandrewrogers/MetroHash", "supports": "!(uwp | arm | x86)" |
