forked from hazelcast/hazelcast-cpp-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
66 lines (59 loc) · 2.1 KB
/
Copy pathCMakeLists.txt
File metadata and controls
66 lines (59 loc) · 2.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#
# Copyright (c) 2008-2025, Hazelcast, Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
cmake_minimum_required (VERSION 3.10)
project (hazelcast-cpp-client-examples
VERSION 5.5.0
DESCRIPTION "Hazelcast C++ Client Code Examples"
LANGUAGES CXX)
if (NOT TARGET hazelcast-cpp-client)
message(STATUS "hazelcast-cpp-client is not a valid target, using find_package to find it.")
find_package(hazelcast-cpp-client REQUIRED)
link_libraries(hazelcast-cpp-client::hazelcast-cpp-client) # TODO find a better way to do this
# Required for 32-bit builds on Linux
link_libraries(pthread)
else()
link_libraries(hazelcast-cpp-client) # TODO find a better way to do this
endif()
if (MSVC)
add_compile_options(/bigobj)
endif()
add_subdirectory(transactions)
add_subdirectory(spi)
add_subdirectory(serialization)
add_subdirectory(network-configuration)
add_subdirectory(monitoring)
add_subdirectory(learning-basics)
add_subdirectory(distributed-topic)
add_subdirectory(distributed-primitives)
add_subdirectory(distributed-map)
add_subdirectory(distributed-collections)
add_subdirectory(Org.Website.Samples)
add_subdirectory(replicated-map)
add_subdirectory(invocation-timeouts)
add_subdirectory(backpressure)
add_subdirectory(event-properties)
add_subdirectory(client-statistics)
add_subdirectory(pipeline)
add_subdirectory(authentication)
add_subdirectory(cp)
add_subdirectory(soak-test)
add_subdirectory(external-smart-client-discovery)
add_subdirectory(sql)
if (${WITH_OPENSSL})
add_subdirectory(tls)
add_subdirectory(aws)
add_subdirectory(cloud-discovery)
endif ()