We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d9e74c commit 231efb6Copy full SHA for 231efb6
hazelcast/test/src/CMakeLists.txt
@@ -10,6 +10,12 @@ target_compile_definitions(
10
PRIVATE HAZELCAST_VERSION="${PROJECT_VERSION}"
11
)
12
13
+# windows-specific compile flags
14
+if (WIN32)
15
+ # speeds the build process
16
+ target_compile_definitions(client_test PRIVATE WIN32_LEAN_AND_MEAN)
17
+endif ()
18
+
19
if (MSVC)
20
target_compile_options(client_test PRIVATE /bigobj)
21
endif()
0 commit comments