From 4dc1e6e7b54d4a30ba1b2b28e99e763fb447bf3c Mon Sep 17 00:00:00 2001 From: Riccardo Maria Bianchi <riccardo.maria.bianchi@cern.ch> Date: Mon, 8 Jun 2020 21:04:09 +0200 Subject: [PATCH] Fix link to sqlite3 if the lib is not installed with CMake. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4f734e8ae..42cb11ff5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -25,7 +25,7 @@ include( PrintBuildInfo ) # Project's dependencies. find_package( GeoModelCore 3.2.0 REQUIRED ) -find_package( SQLite3 REQUIRED ) +find_package( SQLite3 ) # Set sub-packages to build. # add_subdirectory( GeoModelErrorHandler ) // unused at the moment. -- GitLab