We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af70fda commit 1e3ccf3Copy full SHA for 1e3ccf3
tests/simple/CMakeLists.txt
@@ -6,3 +6,7 @@ ADD_EXECUTABLE (simple-test
6
TARGET_LINK_LIBRARIES (simple-test
7
clickhouse-cpp-lib
8
)
9
+
10
+IF (MSVC)
11
+ TARGET_LINK_LIBRARIES (simple-test Crypt32)
12
+ENDIF()
ut/CMakeLists.txt
@@ -43,4 +43,5 @@ TARGET_LINK_LIBRARIES (clickhouse-cpp-ut
43
44
IF (MSVC)
45
TARGET_COMPILE_OPTIONS(clickhouse-cpp-ut PRIVATE /bigobj)
46
+ TARGET_LINK_LIBRARIES (clickhouse-cpp-ut Crypt32)
47
ENDIF()
0 commit comments