From 2f9eae39e341c4c9999db3aca5e0f7e2edea3905 Mon Sep 17 00:00:00 2001 From: Camila Date: Mon, 20 Nov 2023 22:18:51 +0100 Subject: [PATCH] Add find sqlite to the root CMakeLists.txt. Signed-off-by: Camila --- CMakeLists.txt | 1 + src/csync/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ba0195b57efd5..91a9d2080c77a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -212,6 +212,7 @@ if(BUILD_CLIENT) find_package(Sphinx) find_package(PdfLatex) find_package(OpenSSL 1.1 REQUIRED ) + find_package(SQLite3 3.8.0 REQUIRED) find_package(ZLIB REQUIRED) diff --git a/src/csync/CMakeLists.txt b/src/csync/CMakeLists.txt index 4d74bbbf1977a..8f2d6aa3b9d27 100644 --- a/src/csync/CMakeLists.txt +++ b/src/csync/CMakeLists.txt @@ -19,7 +19,7 @@ include(DefineOptions.cmake) include(DefineInstallationPaths) -find_package(SQLite3 3.8.0 REQUIRED) +#find_package(SQLite3 3.8.0 REQUIRED) include(ConfigureChecks.cmake) include(../common/common.cmake)