Skip to content
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
31 changes: 1 addition & 30 deletions docs/modules/clients/pages/cpp-client-getting-started.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ Before you begin, make sure you have the following:

* C++ 11 or above
* https://cloud.hazelcast.com/[Hazelcast {hazelcast-cloud} Account]
* https://github.com/hazelcast/hazelcast-cpp-client#vcpkg-users[vcpkg and Hazelcast {cpp} client]
* A text editor or IDE

== Start a Hazelcast {hazelcast-cloud} Cluster
Expand All @@ -33,36 +34,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.

Extract the keystore files you downloaded into this directory. The files you need for this tutorial are:
Expand Down