Skip to content

Commit

Permalink
[strict-variant] Add new header-only library (microsoft#5320)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexkaratarakis authored and Codiferous committed Feb 7, 2019
1 parent aa09555 commit 23f7009
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ports/strict-variant/CONTROL
Original file line number Diff line number Diff line change
@@ -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 changes: 17 additions & 0 deletions ports/strict-variant/portfile.cmake
Original file line number Diff line number Diff line change
@@ -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)

0 comments on commit 23f7009

Please sign in to comment.