File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ set(TARGET_NAME chsql)
4
4
# DuckDB's extension distribution supports vcpkg. As such, dependencies can be added in ./vcpkg.json and then
5
5
# used in cmake with find_package. Feel free to remove or replace with other dependencies.
6
6
# Note that it should also be removed from vcpkg.json to prevent needlessly installing it..
7
- find_package (OpenSSL REQUIRED)
8
7
set (EXTENSION_NAME ${TARGET_NAME} _extension)
9
8
set (LOADABLE_EXTENSION_NAME ${TARGET_NAME} _loadable_extension)
10
9
set (CHSQL_DUCKDB_VERSION ${DUCKDB_MAJOR_VERSION} )
@@ -24,9 +23,8 @@ include_directories(
24
23
set (EXTENSION_SOURCES src/chsql_extension.cpp src/duck_flock.cpp src/chsql_system.cpp src/parquet_types.cpp)
25
24
build_static_extension(${TARGET_NAME} ${EXTENSION_SOURCES} )
26
25
build_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)
30
28
install (
31
29
TARGETS ${EXTENSION_NAME}
32
30
EXPORT "${DUCKDB_EXPORT_SET} "
You can’t perform that action at this time.
0 commit comments