early-access version 2853
This commit is contained in:
23
externals/vcpkg/ports/parallel-hashmap/portfile.cmake
vendored
Executable file
23
externals/vcpkg/ports/parallel-hashmap/portfile.cmake
vendored
Executable file
@@ -0,0 +1,23 @@
|
||||
#header-only library
|
||||
|
||||
vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO greg7mdp/parallel-hashmap
|
||||
REF 1.34
|
||||
SHA512 3747422e80406aa77b009adee3c16325640dd1044560882fb881dac5ef4109f7d165d26ed7e64002c9285275f95962725ce20c918da12c0c113999c8ca3c7429
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
# Use greg7mdp/parallel-hashmap's own build process, skipping examples and tests
|
||||
vcpkg_cmake_configure(
|
||||
SOURCE_PATH "${SOURCE_PATH}"
|
||||
)
|
||||
vcpkg_cmake_install()
|
||||
|
||||
# Delete redundant directories
|
||||
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/lib ${CURRENT_PACKAGES_DIR}/debug ${CURRENT_PACKAGES_DIR}/share/doc)
|
||||
|
||||
file(COPY ${SOURCE_PATH}/phmap.natvis DESTINATION ${CURRENT_PACKAGES_DIR}/include)
|
||||
|
||||
# Put the licence file where vcpkg expects it
|
||||
file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)
|
12
externals/vcpkg/ports/parallel-hashmap/vcpkg.json
vendored
Executable file
12
externals/vcpkg/ports/parallel-hashmap/vcpkg.json
vendored
Executable file
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"name": "parallel-hashmap",
|
||||
"version": "1.34",
|
||||
"description": "A header-only, very fast and memory-friendly family of C++ hash map & btree containers.",
|
||||
"license": "Apache-2.0",
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "vcpkg-cmake",
|
||||
"host": true
|
||||
}
|
||||
]
|
||||
}
|
Reference in New Issue
Block a user