Skip to content
This repository was archived by the owner on Apr 11, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 1 addition & 29 deletions docs/modules/ROOT/pages/cpp-client-getting-started.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@

* C++ 11 or above
* https://hazelcast.com/products/viridian/[Hazelcast Viridian Cloud Account]
* https://github.com/hazelcast/hazelcast-cpp-client#vcpkg-users[`vcpkg` & Hazelcast C++ client]
* A text editor or IDE

== Start a Hazelcast Viridian Cloud Cluster
Expand All @@ -35,35 +36,6 @@ mkdir hazelcast-cpp-example
cd hazelcast-cpp-example
----

Download and install Vcpkg: +

for Windows;
[source,bash]
----
git clone https://github.com/microsoft/vcpkg
.\vcpkg\bootstrap-vcpkg.bat
----

for non-Windows;
[source,bash]
----
git clone https://github.com/microsoft/vcpkg
./vcpkg/bootstrap-vcpkg.sh
----

Download and install hazelcast-cpp-client: +

for Windows;
[source,bash]
----
.\vcpkg\vcpkg.exe install "hazelcast-cpp-client[openssl]" --recurse
----

for non-Windows;
[source,bash]
----
./vcpkg/vcpkg install "hazelcast-cpp-client[openssl]" --recurse
----

NOTE: Avoid directory names in your path that contain spaces or other non-standard characters.

Expand Down