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 1b278ee commit 00fada3Copy full SHA for 00fada3
chsql/CMakeLists.txt
@@ -22,6 +22,11 @@ include_directories(
22
../duckdb/third_party/mbedtls/include
23
../duckdb/third_party/brotli/include)
24
set(EXTENSION_SOURCES src/chsql_extension.cpp src/duck_flock.cpp src/chsql_system.cpp src/parquet_types.cpp)
25
+# Exclude mbedtls/version from the build
26
+set_source_files_properties(
27
+ ${CMAKE_SOURCE_DIR}/third_party/mbedtls/version
28
+ PROPERTIES HEADER_FILE_ONLY TRUE
29
+)
30
build_static_extension(${TARGET_NAME} ${EXTENSION_SOURCES})
31
build_loadable_extension(${TARGET_NAME} " " ${EXTENSION_SOURCES})
32
# Link OpenSSL in both the static library as the loadable extension
0 commit comments