Skip to content

Commit a222f67

Browse files
committed
remove openssl
1 parent ff10b69 commit a222f67

File tree

2 files changed

+0
-10
lines changed

2 files changed

+0
-10
lines changed

CMakeLists.txt

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,6 @@ cmake_minimum_required(VERSION 3.5)
33
# Set extension name here
44
set(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-
116
set(EXTENSION_NAME ${TARGET_NAME}_extension)
127
set(LOADABLE_EXTENSION_NAME ${TARGET_NAME}_loadable_extension)
138

@@ -19,10 +14,6 @@ set(EXTENSION_SOURCES src/parse_tables_extension.cpp)
1914
build_static_extension(${TARGET_NAME} ${EXTENSION_SOURCES})
2015
build_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-
2617
install(
2718
TARGETS ${EXTENSION_NAME}
2819
EXPORT "${DUCKDB_EXPORT_SET}"

vcpkg.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
22
"dependencies": [
3-
"openssl"
43
]
54
}

0 commit comments

Comments
 (0)