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 458d54a commit 3b859d6Copy full SHA for 3b859d6
CMakeLists.txt
@@ -24,8 +24,12 @@ build_static_extension(${TARGET_NAME} ${EXTENSION_SOURCES})
24
build_loadable_extension(${TARGET_NAME} " " ${EXTENSION_SOURCES})
25
26
# Link OpenSSL in both the static library as the loadable extension
27
+include_directories(${OPENSSL_INCLUDE_DIR})
28
target_link_libraries(${EXTENSION_NAME} OpenSSL::SSL OpenSSL::Crypto)
29
target_link_libraries(${LOADABLE_EXTENSION_NAME} OpenSSL::SSL OpenSSL::Crypto)
30
+target_link_libraries(${LOADABLE_EXTENSION_NAME} duckdb_mbedtls
31
+ ${OPENSSL_LIBRARIES})
32
+target_link_libraries(${EXTENSION_NAME} duckdb_mbedtls ${OPENSSL_LIBRARIES})
33
34
if(MINGW)
35
find_package(ZLIB)
0 commit comments