File tree Expand file tree Collapse file tree 2 files changed +0
-10
lines changed
Expand file tree Collapse file tree 2 files changed +0
-10
lines changed Original file line number Diff line number Diff line change @@ -3,11 +3,6 @@ cmake_minimum_required(VERSION 3.5)
33# Set extension name here
44set (TARGET_NAME parse_tables)
55
6- # DuckDB's extension distribution supports vcpkg. As such, dependencies can be added in ./vcpkg.json and then
7- # used in cmake with find_package. Feel free to remove or replace with other dependencies.
8- # Note that it should also be removed from vcpkg.json to prevent needlessly installing it..
9- find_package (OpenSSL REQUIRED)
10-
116set (EXTENSION_NAME ${TARGET_NAME} _extension)
127set (LOADABLE_EXTENSION_NAME ${TARGET_NAME} _loadable_extension)
138
@@ -19,10 +14,6 @@ set(EXTENSION_SOURCES src/parse_tables_extension.cpp)
1914build_static_extension(${TARGET_NAME} ${EXTENSION_SOURCES} )
2015build_loadable_extension(${TARGET_NAME} " " ${EXTENSION_SOURCES} )
2116
22- # Link OpenSSL in both the static library as the loadable extension
23- target_link_libraries (${EXTENSION_NAME} OpenSSL::SSL OpenSSL::Crypto)
24- target_link_libraries (${LOADABLE_EXTENSION_NAME} OpenSSL::SSL OpenSSL::Crypto)
25-
2617install (
2718 TARGETS ${EXTENSION_NAME}
2819 EXPORT "${DUCKDB_EXPORT_SET} "
Original file line number Diff line number Diff line change 11{
22 "dependencies" : [
3- " openssl"
43 ]
54}
You can’t perform that action at this time.
0 commit comments