should be it

This commit is contained in:
2025-10-24 19:21:19 -05:00
parent a4b23fc57c
commit f09560c7b1
14047 changed files with 3161551 additions and 1 deletions

25
external/duckdb/DuckDBConfig.cmake.in vendored Normal file
View File

@@ -0,0 +1,25 @@
# Config file for DuckDB package
# It defines the following variables
#
# DuckDB_INCLUDE_DIRS - include directories for DuckDB
# DuckDB_LIBRARIES - libraries to link against
include(CMakeFindDependencyMacro)
find_dependency(Threads)
if(NOT @WITH_INTERNAL_ICU@)
find_dependency(ICU COMPONENTS i18n uc data)
endif()
# Compute paths
get_filename_component(DuckDB_CMAKE_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH)
set(DuckDB_INCLUDE_DIRS "@CONF_INCLUDE_DIRS@")
if(NOT TARGET duckdb AND NOT DuckDB_BINARY_DIR)
include("${DuckDB_CMAKE_DIR}/DuckDBExports.cmake")
endif()
if(DuckDB_USE_STATIC_LIBS)
set(DuckDB_LIBRARIES duckdb_static)
else()
set(DuckDB_LIBRARIES duckdb)
endif()