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

18
externals/vcpkg/ports/sparsepp/CMakeLists.txt vendored Executable file
View File

@@ -0,0 +1,18 @@
cmake_minimum_required (VERSION 3.9)
project (sparsepp)
set(HEADERS
sparsepp/spp.h
sparsepp/spp_config.h
sparsepp/spp_dlalloc.h
sparsepp/spp_memory.h
sparsepp/spp_smartptr.h
sparsepp/spp_stdint.h
sparsepp/spp_timer.h
sparsepp/spp_traits.h
sparsepp/spp_utils.h
)
if(NOT DISABLE_INSTALL_HEADERS)
install(FILES ${HEADERS} DESTINATION include/sparsepp)
endif()

30
externals/vcpkg/ports/sparsepp/portfile.cmake vendored Executable file
View File

@@ -0,0 +1,30 @@
vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO greg7mdp/sparsepp
REF 1.22
SHA512 b660cd7de48fcab50d4a0df4e4813226b0b0a8a3791aba4e4cc6a456af7bba0be6694bc44781a7d00b5582b32b1d85b9afa83095b7e5c0a26d1b0344ddc94b0f
HEAD_REF master
)
file(COPY ${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt DESTINATION ${SOURCE_PATH})
vcpkg_configure_cmake(
SOURCE_PATH ${SOURCE_PATH}
PREFER_NINJA
)
# Note: we could add: OPTIONS_DEBUG -DDISABLE_INSTALL_HEADERS=ON
# but it's an header only package, so there's no INSTALL target. So
# we remove the duplicate headers.
vcpkg_install_cmake()
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug)
vcpkg_copy_pdbs()
file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/sparsepp RENAME copyright)

6
externals/vcpkg/ports/sparsepp/vcpkg.json vendored Executable file
View File

@@ -0,0 +1,6 @@
{
"name": "sparsepp",
"version-string": "1.22",
"port-version": 2,
"description": "A fast, memory efficient hash map for C++"
}