File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ set(TARGET_NAME chsql)
44# DuckDB's extension distribution supports vcpkg. As such, dependencies can be added in ./vcpkg.json and then
55# used in cmake with find_package. Feel free to remove or replace with other dependencies.
66# Note that it should also be removed from vcpkg.json to prevent needlessly installing it..
7- find_package (OpenSSL REQUIRED )
87set (EXTENSION_NAME ${TARGET_NAME} _extension)
98set (LOADABLE_EXTENSION_NAME ${TARGET_NAME} _loadable_extension)
109set (CHSQL_DUCKDB_VERSION ${DUCKDB_MAJOR_VERSION} )
@@ -24,9 +23,8 @@ include_directories(
2423set (EXTENSION_SOURCES src/chsql_extension.cpp src/duck_flock.cpp src/chsql_system.cpp src/parquet_types.cpp)
2524build_static_extension (${TARGET_NAME} ${EXTENSION_SOURCES} )
2625build_loadable_extension (${TARGET_NAME} " " ${EXTENSION_SOURCES} )
27- # Link OpenSSL in both the static library as the loadable extension
28- target_link_libraries (${EXTENSION_NAME} OpenSSL::SSL OpenSSL::Crypto duckdb_mbedtls )
29- target_link_libraries (${LOADABLE_EXTENSION_NAME} OpenSSL::SSL OpenSSL::Crypto duckdb_mbedtls )
26+ target_link_libraries (${EXTENSION_NAME} duckdb_mbedtls )
27+ target_link_libraries (${LOADABLE_EXTENSION_NAME} duckdb_mbedtls )
3028install (
3129 TARGETS ${EXTENSION_NAME}
3230 EXPORT "${DUCKDB_EXPORT_SET} "
You can’t perform that action at this time.
0 commit comments