mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-27 18:31:15 +08:00
[strict-variant] Add new header-only library (#5320)
This commit is contained in:
parent
aa09555991
commit
23f7009951
3
ports/strict-variant/CONTROL
Normal file
3
ports/strict-variant/CONTROL
Normal 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.
|
17
ports/strict-variant/portfile.cmake
Normal file
17
ports/strict-variant/portfile.cmake
Normal 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)
|
Loading…
x
Reference in New Issue
Block a user