vcpkg/ports/hazelcast-cpp-client/portfile.cmake
ihsan demir f2ae282c8d
[hazelcast-cpp-client] New version update to 4.0.1 (#16593)
* Updated the `hazelcast-cpp-client` version to 4.0.1 since we released this new patch release.

* Updated the version for the latest commit using the command `./vcpkg x-add-version --overwrite-version hazelcast-cpp-client`.

* [hazelcast-cpp-client] Restore version 4.0.0 to the db

Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
2021-03-11 11:02:36 -08:00

29 lines
783 B
CMake

vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO hazelcast/hazelcast-cpp-client
REF v4.0.1
SHA512 9d6e2fe890d5dc08b2ccc2e74c736c7ce014a03f5f020ccfc21f5accbfe39285898283e01e491cab1259badf983094b97b618230cb999480372aaf018d874457
HEAD_REF master
)
vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
openssl WITH_OPENSSL
example BUILD_EXAMPLES
)
vcpkg_configure_cmake(
SOURCE_PATH "${SOURCE_PATH}"
PREFER_NINJA
OPTIONS ${FEATURE_OPTIONS}
)
vcpkg_install_cmake()
vcpkg_copy_pdbs()
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
vcpkg_fixup_cmake_targets(CONFIG_PATH lib/cmake/hazelcast-cpp-client)
# Handle copyright
file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)