From dbc0137383e6b768024bb20723b33e40d16629d7 Mon Sep 17 00:00:00 2001 From: Martin Rotter Date: Mon, 14 Aug 2023 07:43:42 +0200 Subject: [PATCH] default to use system sqlite --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1f7fb4b33..22a20a72f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -110,7 +110,7 @@ endif() # Global compilation switches. option(BUILD_WITH_QT6 "Build application with Qt 6" OFF) -option(USE_SYSTEM_SQLITE "Use system-wide SQLite3 library." OFF) +option(USE_SYSTEM_SQLITE "Use system-wide SQLite3 library." ON) option(USE_WEBENGINE "Use QtWebEngine for embedded web browser" ON) option(UPDATE_TRANSLATIONS "Call lupdate to update translation files from source (Qt 6 only)" OFF) option(FORCE_COLORED_OUTPUT "Always produce ANSI-colored output (GCC/Clang only)" OFF)