File tree Expand file tree Collapse file tree 2 files changed +32
-0
lines changed Expand file tree Collapse file tree 2 files changed +32
-0
lines changed Original file line number Diff line number Diff line change @@ -94,6 +94,14 @@ else()
94
94
find_package (Boost 1.71 REQUIRED COMPONENTS thread chrono )
95
95
endif ()
96
96
97
+ if (Boost_FOUND )
98
+ message (STATUS "Boost version: ${Boost_VERSION} " )
99
+ message (STATUS "Boost include directory: ${Boost_INCLUDE_DIRS} " )
100
+ message (STATUS "Boost libraries: ${Boost_LIBRARIES} " )
101
+ else ()
102
+ message (FATAL_ERROR "Boost not found!" )
103
+ endif ()
104
+
97
105
# find OpenSSL if building WITH_OPENSSL
98
106
if (WITH_OPENSSL )
99
107
if (APPLE )
@@ -104,6 +112,14 @@ if (WITH_OPENSSL)
104
112
endif ()
105
113
106
114
find_package (OpenSSL REQUIRED )
115
+
116
+ if (OpenSSL_FOUND )
117
+ message (STATUS "OpenSSL version: ${OpenSSL_VERSION} " )
118
+ message (STATUS "OpenSSL include directory: ${OPENSSL_INCLUDE_DIR} " )
119
+ message (STATUS "OpenSSL libraries: ${OPENSSL_LIBRARIES} " )
120
+ else ()
121
+ message (FATAL_ERROR "OpenSSL not found!" )
122
+ endif ()
107
123
endif ()
108
124
109
125
# add the library target
Original file line number Diff line number Diff line change
1
+ {
2
+ "$schema" : " https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json" ,
3
+ "name" : " hazelcast-cpp-client" ,
4
+ "version" : " 5.5.0" ,
5
+ "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
+ ]
16
+ }
You can’t perform that action at this time.
0 commit comments