[strict-variant] Add new header-only library (#5320)

This commit is contained in:
Alexander Karatarakis 2019-02-07 10:43:50 -08:00 committed by Codiferous
parent aa09555991
commit 23f7009951
2 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,3 @@
Source: strict-variant
Version: v0.5
Description: Tagged union implementation that will never throw an exception or make a dynamic allocation in the effort of supporting types that have throwing moves.

View File

@ -0,0 +1,17 @@
# header-only
include(vcpkg_common_functions)
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO cbeck88/strict-variant
REF 5ab330edcb5e3eea67fbedf8ac89648e5bc1e9a1
SHA512 c80e5cd7cff389174447f5825af57ddea079956b2a4cb89337479e02289e89df19713ff031e914bdff2c823e8d2518311a1118701ae4e173f6557c770e553cd0
HEAD_REF master
)
# Copy header files
file(COPY ${SOURCE_PATH}/include DESTINATION ${CURRENT_PACKAGES_DIR} FILES_MATCHING PATTERN "*.hpp")
# Handle copyright
file(COPY ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/strict-variant)
file(RENAME ${CURRENT_PACKAGES_DIR}/share/strict-variant/LICENSE ${CURRENT_PACKAGES_DIR}/share/strict-variant/copyright)