early-access version 2853

This commit is contained in:
pineappleEA
2022-07-23 03:01:36 +02:00
parent 1f2b5081b5
commit 1f111bb69c
8955 changed files with 418777 additions and 999 deletions

View File

@@ -0,0 +1,10 @@
get_filename_component(_sparsehash_root "${CMAKE_CURRENT_LIST_FILE}" PATH)
get_filename_component(_sparsehash_root "${_sparsehash_root}" PATH)
get_filename_component(_sparsehash_root "${_sparsehash_root}" PATH)
add_library(sparsehash::sparsehash INTERFACE IMPORTED)
set_target_properties(sparsehash::sparsehash
PROPERTIES INTERFACE_INCLUDE_DIRECTORIES "${_sparsehash_root}/include")
unset(_sparsehash_root)

View File

@@ -0,0 +1,40 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO sparsehash/sparsehash
REF sparsehash-2.0.4
SHA512 40C007BC5814DD5F2BDACD5EC884BC5424F7126F182D4C7B34371F88B674456FC193B947FDD283DBD0C7EB044D8F06BAF8CAEC6C93E73B1B587282B9026EA877
HEAD_REF master
)
if(VCPKG_TARGET_IS_WINDOWS)
file(COPY ${SOURCE_PATH}/src/google DESTINATION ${CURRENT_PACKAGES_DIR}/include)
file(COPY ${SOURCE_PATH}/src/sparsehash DESTINATION ${CURRENT_PACKAGES_DIR}/include)
file(COPY ${SOURCE_PATH}/src/windows/sparsehash/internal/sparseconfig.h DESTINATION ${CURRENT_PACKAGES_DIR}/include/sparsehash/internal)
else()
vcpkg_execute_required_process(
COMMAND ${SOURCE_PATH}/configure ${OPTIONS} --prefix=${CURRENT_PACKAGES_DIR}
WORKING_DIRECTORY ${SOURCE_PATH}
LOGNAME configure-${TARGET_TRIPLET}
)
vcpkg_execute_required_process(
COMMAND make -j ${VCPKG_CONCURRENCY} install
WORKING_DIRECTORY ${SOURCE_PATH}
LOGNAME install-${TARGET_TRIPLET}
)
endif()
configure_file(
${CMAKE_CURRENT_LIST_DIR}/Config.cmake.in
${CURRENT_PACKAGES_DIR}/share/sparsehash/sparsehash-config.cmake
@ONLY
)
configure_file(${SOURCE_PATH}/COPYING ${CURRENT_PACKAGES_DIR}/share/sparsehash/copyright COPYONLY)
file(COPY ${CMAKE_CURRENT_LIST_DIR}/usage DESTINATION ${CURRENT_PACKAGES_DIR}/share/sparsehash)
vcpkg_fixup_pkgconfig()

4
externals/vcpkg/ports/sparsehash/usage vendored Executable file
View File

@@ -0,0 +1,4 @@
The package sparsehash provides CMake targets:
find_package(sparsehash CONFIG REQUIRED)
target_link_libraries(main PRIVATE sparsehash::sparsehash)

7
externals/vcpkg/ports/sparsehash/vcpkg.json vendored Executable file
View File

@@ -0,0 +1,7 @@
{
"name": "sparsehash",
"version": "2.0.4",
"port-version": 2,
"description": "The sparsehash package consists of two hashtable implementations: sparse, which is designed to be very space efficient, and dense, which is designed to be very time efficient.",
"homepage": "https://github.com/sparsehash/sparsehash"
}