Assaf
Assaf

Reputation: 1

Hazelcast C++ Client

I'm trying using hazelcast-3.6 with hazelcast-cpp-client-3.6. I downloaded both packages and created an empty C++ application which currently just includes HazelcastAll.h.

During build I get errors for missing files which indeed are missing from downloaded official c++ client (i.e. MapExecuteOnKeyCodec.h).

Did anyone encounter such issue?

Thanks.

Upvotes: 0

Views: 204

Answers (1)

Baris Akar
Baris Akar

Reputation: 4965

Some required files are in hazelcast\generated-sources\. E.g. MapExecuteOnKeyCodec.h is in hazelcast\generated-sources\include\hazelcast\client\protocol\codec. You have to add hazelcast\generated-sources\include\ to the additional include directories.

Upvotes: 1

Related Questions