Add cmake test for sqlite3 FTS5
This commit is contained in:
parent
4a1118ceb3
commit
588a0b3c41
@ -21,6 +21,7 @@ if(CMAKE_VERSION VERSION_GREATER 3.0)
|
|||||||
endif()
|
endif()
|
||||||
|
|
||||||
include(CheckCXXCompilerFlag)
|
include(CheckCXXCompilerFlag)
|
||||||
|
include(CheckCXXSourceRuns)
|
||||||
include(CheckIncludeFiles)
|
include(CheckIncludeFiles)
|
||||||
include(FindPkgConfig)
|
include(FindPkgConfig)
|
||||||
include(cmake/C++11Compat.cmake)
|
include(cmake/C++11Compat.cmake)
|
||||||
@ -358,6 +359,26 @@ if (APPLE AND USE_BUNDLE AND NOT USE_BUNDLE_DIR)
|
|||||||
set(USE_BUNDLE_DIR "../PlugIns")
|
set(USE_BUNDLE_DIR "../PlugIns")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
# Check that we have sqlite3 with FTS5
|
||||||
|
|
||||||
|
set(CMAKE_REQUIRED_LIBRARIES ${Qt5Core_LIBRARIES} ${Qt5Sql_LIBRARIES})
|
||||||
|
set(CMAKE_REQUIRED_INCLUDES ${Qt5Core_INCLUDE_DIRS} ${Qt5Sql_INCLUDE_DIRS})
|
||||||
|
|
||||||
|
check_cxx_source_runs("
|
||||||
|
#include <QSqlDatabase>
|
||||||
|
#include <QSqlQuery>
|
||||||
|
int main() {
|
||||||
|
QSqlDatabase db = QSqlDatabase::addDatabase(\"QSQLITE\");
|
||||||
|
db.setDatabaseName(\":memory:\");
|
||||||
|
if (!db.open()) { return 1; }
|
||||||
|
QSqlQuery q(db);
|
||||||
|
q.prepare(\"CREATE VIRTUAL TABLE test_fts USING fts5(test, tokenize = 'unicode61 remove_diacritics 0');\");
|
||||||
|
if (!q.exec()) return 1;
|
||||||
|
}
|
||||||
|
"
|
||||||
|
SQLITE3_FTS5
|
||||||
|
)
|
||||||
|
|
||||||
if(HAVE_XINE)
|
if(HAVE_XINE)
|
||||||
check_cxx_source_compiles("
|
check_cxx_source_compiles("
|
||||||
#define METRONOM_INTERNAL
|
#define METRONOM_INTERNAL
|
||||||
@ -411,3 +432,7 @@ if(NOT HAVE_GSTREAMER AND NOT HAVE_XINE AND NOT HAVE_VLC AND NOT HAVE_PHONON)
|
|||||||
elseif(NOT HAVE_GSTREAMER)
|
elseif(NOT HAVE_GSTREAMER)
|
||||||
message(WARNING "GStreamer is the only engine that is fully implemented. Using other engines is possible but not recommended.")
|
message(WARNING "GStreamer is the only engine that is fully implemented. Using other engines is possible but not recommended.")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
if(NOT SQLITE3_FTS5)
|
||||||
|
message(WARNING "sqlite3 must be enabled with FTS5. See: https://www.sqlite.org/fts5.html")
|
||||||
|
endif()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user