diff --git a/CMakeLists.txt b/CMakeLists.txt index 07617d70..e1799a51 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -41,6 +41,7 @@ if (ANDROID) find_package(Qt5 ${QT_MIN_VERSION} REQUIRED COMPONENTS Svg) find_package(KF5 ${KF5_MIN_VERSION} REQUIRED COMPONENTS Kirigami2) find_package(OpenSSL REQUIRED) + find_package(SQLite3 REQUIRED) else() find_package(Qt5 ${QT_MIN_VERSION} REQUIRED COMPONENTS Widgets DBus) endif() diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 78d144f0..e7ade1e0 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -129,6 +129,7 @@ if(ANDROID) KF5::Kirigami2 Qt::Svg OpenSSL::SSL + SQLite::SQLite3 log )