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,30 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO hazelcast/hazelcast-cpp-client
REF v5.0.0
SHA512 7cf85eadeed212871d2a6c5c0aa9d9640c9c89e126c3e383981ddd4cb222390e4ce8307b554766666b8d7816bd5e0fed4242bc674e20423570726c261c182559
HEAD_REF master
)
vcpkg_check_features(
OUT_FEATURE_OPTIONS FEATURE_OPTIONS
FEATURES
openssl WITH_OPENSSL
example BUILD_EXAMPLES
)
vcpkg_cmake_configure(
SOURCE_PATH "${SOURCE_PATH}"
OPTIONS ${FEATURE_OPTIONS}
)
vcpkg_cmake_install()
vcpkg_copy_pdbs()
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/hazelcast-cpp-client)
# Handle copyright
file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)

View File

@@ -0,0 +1,38 @@
{
"name": "hazelcast-cpp-client",
"version-semver": "5.0.0",
"description": "C++ client library for Hazelcast in-memory database.",
"homepage": "https://github.com/hazelcast/hazelcast-cpp-client",
"documentation": "http://hazelcast.github.io/hazelcast-cpp-client/index.html",
"supports": "!uwp",
"dependencies": [
"boost-any",
"boost-asio",
"boost-chrono",
"boost-format",
"boost-optional",
"boost-property-tree",
"boost-system",
"boost-thread",
"boost-uuid",
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
],
"features": {
"example": {
"description": "Build examples for Hazelcast C++ client"
},
"openssl": {
"description": "Build hazelcast C++ client with SSL support",
"dependencies": [
"openssl"
]
}
}
}