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

View File

@@ -0,0 +1,25 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO ryanhaining/cppitertools
REF 539a5be8359c4330b3f88ed1821f32bb5c89f5f6
SHA512 cab0cb8a6b711824c13ca013b3349b9decb84f2dab6305bfb1bdd013f7426d5b199c127dadabeaaafc2e7ff6ad442222dd0fffee9aaacfa27d3aeb82c344ae4f
HEAD_REF master
)
vcpkg_configure_cmake(
SOURCE_PATH ${SOURCE_PATH}
PREFER_NINJA
OPTIONS
-Dcppitertools_INSTALL_CMAKE_DIR=share
)
vcpkg_install_cmake()
file(REMOVE_RECURSE
${CURRENT_PACKAGES_DIR}/debug
${CURRENT_PACKAGES_DIR}/share/cppitertools-config-version.cmake)
# Handle copyright
file(INSTALL ${SOURCE_PATH}/LICENSE.md
DESTINATION ${CURRENT_PACKAGES_DIR}/share/cppitertools
RENAME copyright)

10
externals/vcpkg/ports/cppitertools/vcpkg.json vendored Executable file
View File

@@ -0,0 +1,10 @@
{
"name": "cppitertools",
"version": "2.1",
"port-version": 2,
"description": "Range-based for loop add-ons inspired by the Python builtins and itertools library",
"homepage": "https://github.com/ryanhaining/cppitertools",
"dependencies": [
"boost-optional"
]
}