From 3c155635696d309e4bbd3b73f7d9f1c3b4840c11 Mon Sep 17 00:00:00 2001 From: matlabbe Date: Wed, 5 Sep 2018 15:03:50 -0400 Subject: [PATCH] fixed sqlite3 cmake info not correctly shown --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e4f362e2..703ca4c5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -884,8 +884,8 @@ IF(OpenCV_FOUND) ENDIF() ENDIF(OpenCV_FOUND) -IF(SQLITE3_FOUND) -MESSAGE(STATUS " With external SQLite3 = YES") +IF(Sqlite3_FOUND) +MESSAGE(STATUS " With external SQLite3 = YES (License: Public Domain)") ELSE() MESSAGE(STATUS " With external SQLite3 = NO (sqlite3 not found, internal version is used for convenience)") ENDIF()