Skip to content

Commit ad9bc1a

Browse files
committed
Review comment fix. Added versions for dependencies.
1 parent 979c967 commit ad9bc1a

File tree

2 files changed

+54
-11
lines changed

2 files changed

+54
-11
lines changed

Reference_Manual.md.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ This generates the `conanbuildinfo.cmake` file to be included in your CMakeLists
244244
1. Linux, macOS or Windows
245245
2. A compiler that supports C++11
246246
3. [CMake](https://cmake.org) 3.10 or above
247-
4. [Boost](https://www.boost.org) 1.71 or above. Minimum boost version is upgraded to 1.73 for Windows due to [this](https://github.com/chriskohlhoff/asio/issues/431) bug.
247+
4. [Boost](https://www.boost.org) 1.73 or above.
248248
5. [OpenSSL](https://www.openssl.org) (optional)
249249

250250
#### 1.1.3.2. Downloading Source Code

vcpkg.json

Lines changed: 53 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,57 @@
33
"name": "hazelcast-cpp-client",
44
"version": "5.5.0",
55
"dependencies": [
6-
"boost-any",
7-
"boost-asio",
8-
"boost-chrono",
9-
"boost-format",
10-
"boost-optional",
11-
"boost-property-tree",
12-
"boost-system",
13-
"boost-thread",
14-
"boost-uuid"
15-
]
6+
{
7+
"name": "boost-any",
8+
"version>=": "1.73.0"
9+
},
10+
{
11+
"name": "boost-asio",
12+
"version>=": "1.73.0"
13+
},
14+
{
15+
"name": "boost-chrono",
16+
"version>=": "1.73.0"
17+
},
18+
{
19+
"name": "boost-any",
20+
"version>=": "1.73.0"
21+
},
22+
{
23+
"name": "boost-format",
24+
"version>=": "1.73.0"
25+
},
26+
{
27+
"name": "boost-optional",
28+
"version>=": "1.73.0"
29+
},
30+
{
31+
"name": "boost-property-tree",
32+
"version>=": "1.73.0"
33+
},
34+
{
35+
"name": "boost-system",
36+
"version>=": "1.73.0"
37+
},
38+
{
39+
"name": "boost-thread",
40+
"version>=": "1.73.0"
41+
},
42+
{
43+
"name": "boost-uuid",
44+
"version>=": "1.73.0"
45+
},
46+
{
47+
"name": "boost-multiprecision",
48+
"version>=": "1.73.0"
49+
}
50+
],
51+
"features": {
52+
"build-tests": {
53+
"description": "Enable GTest for building tests",
54+
"dependencies": [
55+
"gtest"
56+
]
57+
}
58+
}
1659
}

0 commit comments

Comments
 (0)