diff options
| author | 2017-02-09 04:37:26 -0500 | |
|---|---|---|
| committer | 2017-02-09 04:37:26 -0500 | |
| commit | c9d6debf9015b7853c3e061bbc64a555d85e2fcd (patch) | |
| tree | 53341bc57ae9fbad2beb5b6c08d97a68bee0ec8e /Plugins/DbSqliteWx/DbSqliteWx.pro | |
| parent | d5caba2b1f36dc3b92fa705a06097d0597fa2ddd (diff) | |
| parent | d9aa870e5d509cc7309ab82dd102a937ab58613a (diff) | |
Merge tag 'upstream/3.1.1+dfsg1'
Upstream version 3.1.1+dfsg1
# gpg: Signature made Thu 09 Feb 2017 04:37:24 AM EST
# gpg: using RSA key 5001E1B09AA3744B
# gpg: issuer "unit193@ubuntu.com"
# gpg: Good signature from "Unit 193 <unit193@ubuntu.com>" [unknown]
# gpg: aka "Unit 193 <unit193@gmail.com>" [unknown]
# gpg: WARNING: This key is not certified with a trusted signature!
# gpg: There is no indication that the signature belongs to the owner.
# Primary key fingerprint: 8DB3 E586 865D 2B4A 2B18 5A5C 5001 E1B0 9AA3 744B
Diffstat (limited to 'Plugins/DbSqliteWx/DbSqliteWx.pro')
| -rw-r--r-- | Plugins/DbSqliteWx/DbSqliteWx.pro | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/Plugins/DbSqliteWx/DbSqliteWx.pro b/Plugins/DbSqliteWx/DbSqliteWx.pro new file mode 100644 index 0000000..463cc75 --- /dev/null +++ b/Plugins/DbSqliteWx/DbSqliteWx.pro @@ -0,0 +1,60 @@ +#-------------------------------------------------
+#
+# Project created by QtCreator 2016-10-25T10:00:38
+#
+#-------------------------------------------------
+
+QT -= gui
+
+include($$PWD/../../SQLiteStudio3/plugins.pri)
+
+DEFINES += DBSQLITEWX_LIBRARY
+
+TARGET = DbSqliteWx
+TEMPLATE = lib
+
+SOURCES += dbsqlitewx.cpp \
+ codec.c \
+ codecext.c \
+ csv.c \
+ extensionfunctions.c \
+ rijndael.c \
+ sha2.c \
+ sqlite3secure.c \
+ userauth.c \
+ dbsqlitewxinstance.cpp \
+ wxsqlite3.c
+
+HEADERS += dbsqlitewx.h \
+ codec.h \
+ rijndael.h \
+ sha2.h \
+ sqlite3ext.h \
+ sqlite3userauth.h \
+ dbsqlitewx_global.h \
+ dbsqlitewxinstance.h \
+ wxsqlite3.h
+DISTFILES += DbSqliteWx.json
+
+!macx: {
+ LIBS += -L$${PWD}/../deps/lib/$${PLATFORM}/
+}
+win32: {
+ INCLUDEPATH += $${PWD}/../deps/include/$${PLATFORM}/
+ DEPENDPATH += $${PWD}/../deps/include/$${PLATFORM}/
+ LIBS += -lcoreSQLiteStudio
+}
+
+unix: {
+ DEFINES += SQLITE_OS_UNIX=1
+}
+win32: {
+ DEFINES += SQLITE_OS_WIN=1
+}
+DEFINES += SQLITE_HAS_CODEC SQLITE_ALLOW_XTHREAD_CONNECT=1 SQLITE_THREADSAFE=1 SQLITE_TEMP_STORE=2 CODEC_TYPE=CODEC_TYPE_AES256 \
+ SQLITE_CORE SQLITE_ENABLE_FTS3 SQLITE_ENABLE_FTS3_PARENTHESIS SQLITE_ENABLE_RTREE USE_DYNAMIC_SQLITE3_LOAD=0
+
+QMAKE_CFLAGS_WARN_ON = -Wall -Wno-unused-parameter -Wno-sign-compare -Wno-unused-function -Wno-unused-but-set-variable -Wno-parentheses
+
+OTHER_FILES += \
+ dbsqlitewx.json
|
