File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -47,8 +47,10 @@ _duckdb_set_default(BUILD_UNITTESTS OFF)
4747_duckdb_set_default(BUILD_BENCHMARKS OFF )
4848_duckdb_set_default(DISABLE_UNITY OFF )
4949
50- # Extension configuration - static linking for Python modules
50+ # Extension configuration
5151_duckdb_set_default(DISABLE_BUILTIN_EXTENSIONS OFF )
52+ _duckdb_set_default(ENABLE_EXTENSION_AUTOINSTALL 1) # todo: set to ON https://github.com/duckdb/duckdb/pull/18778/files
53+ _duckdb_set_default(ENABLE_EXTENSION_AUTOLOADING ON )
5254
5355# Performance options - enable optimizations by default
5456_duckdb_set_default(NATIVE_ARCH OFF )
@@ -69,6 +71,8 @@ set(BUILD_UNITTESTS "${BUILD_UNITTESTS}" CACHE BOOL "Build DuckDB unit tests")
6971set (BUILD_BENCHMARKS "${BUILD_BENCHMARKS} " CACHE BOOL "Build DuckDB benchmarks" )
7072set (DISABLE_UNITY "${DISABLE_UNITY} " CACHE BOOL "Disable unity builds (slower compilation)" )
7173set (DISABLE_BUILTIN_EXTENSIONS "${DISABLE_BUILTIN_EXTENSIONS} " CACHE BOOL "Disable all built-in extensions" )
74+ set (ENABLE_EXTENSION_AUTOINSTALL "${ENABLE_EXTENSION_AUTOINSTALL} " CACHE BOOL "Enable extension auto-installing by default." )
75+ set (ENABLE_EXTENSION_AUTOLOADING "${ENABLE_EXTENSION_AUTOLOADING} " CACHE BOOL "Enable extension auto-loading by default." )
7276set (NATIVE_ARCH "${NATIVE_ARCH} " CACHE BOOL "Optimize for native architecture" )
7377set (ENABLE_SANITIZER "${ENABLE_SANITIZER} " CACHE BOOL "Enable address sanitizer" )
7478set (ENABLE_UBSAN "${ENABLE_UBSAN} " CACHE BOOL "Enable undefined behavior sanitizer" )
You can’t perform that action at this time.
0 commit comments