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

20
externals/vcpkg/ports/hps/portfile.cmake vendored Executable file
View File

@@ -0,0 +1,20 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO jl2922/hps
REF 8d1403697a2fad6ddf02c7afb190596ca68b2105
SHA512 e0c22de8a684891a5b6faa968c72782ffb44c5359ce53a4cbd74abf5e1b6d5d1ff30ce96a4fc4c38fc7a0222d6874eab47b76c5a87fce1c43285a915d0f55814
HEAD_REF master
)
# Install header files
file(INSTALL
DIRECTORY
"${SOURCE_PATH}/src/"
DESTINATION
"${CURRENT_PACKAGES_DIR}/include/${PORT}"
FILES_MATCHING PATTERN "*.h" )
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/include/${PORT}/benchmark")
file(INSTALL "${CMAKE_CURRENT_LIST_DIR}/usage" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}")
file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)

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

@@ -0,0 +1,4 @@
The package hps is header only and can be used from CMake via:
find_path(HPS_INCLUDE_DIRS "hps/hps.h")
target_include_directories(main PRIVATE ${HPS_INCLUDE_DIRS})

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

@@ -0,0 +1,7 @@
{
"name": "hps",
"version-date": "2022-01-18",
"description": "A C++11 High Performance Serialization Library.",
"homepage": "https://github.com/jl2922/hps",
"license": "MIT"
}