From e2f8a9883b84db38bdcd2dfca27ebe2bc2934ecb Mon Sep 17 00:00:00 2001 From: Marco Bubke Date: Mon, 1 Jun 2015 18:51:55 +0200 Subject: Introduce codemodelbackend process and library This is a partial result of wip/clang-oop. More will follow. This allows us to invoke the completion out of the Qt Creator process and thus safes us as against libclang crashes. At this point only the completion use case is supported. Some notes on the individual components: src/libs/codemodelbackendipc * library encapsulating the inter process communication handling * used by the backend application and in a follow-up change by the creator integration src/libs/3rdparty/sqlite * version 3.8.10.2 * dependency of codemodelbackendipc, will be used to storage indexing data, among others src/tools/codemodelbackend * the backend application tests/unit: * unit tests Change-Id: I91a48e27467581a22fb760a18d8eb926008fea60 Reviewed-by: Alessandro Portale Reviewed-by: Nikolai Kosjar Reviewed-by: Marco Bubke Reviewed-by: Oswald Buddenhagen --- src/libs/3rdparty/sqlite/sqlite.pri | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/libs/3rdparty/sqlite/sqlite.pri (limited to 'src/libs/3rdparty/sqlite/sqlite.pri') diff --git a/src/libs/3rdparty/sqlite/sqlite.pri b/src/libs/3rdparty/sqlite/sqlite.pri new file mode 100644 index 0000000000..cd1ef1e767 --- /dev/null +++ b/src/libs/3rdparty/sqlite/sqlite.pri @@ -0,0 +1,12 @@ +INCLUDEPATH *= $$PWD +VPATH *= $$PWD + +HEADERS += okapi_bm25.h \ + sqlite3.h \ + sqlite3ext.h + + +SOURCES += sqlite3.c + +win32:DEFINES += SQLITE_API=__declspec(dllexport) +unix:DEFINES += SQLITE_API=\"__attribute__((visibility(\\\"default\\\")))\" -- cgit v1.2.3