blob: b297e31da2aa8005ae7621d35b8e7d4f74fda5d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
INCLUDEPATH += $$PWD
VPATH += $$PWD
SOURCES += \
columndefinition.cpp \
createtablecommand.cpp \
createtablesqlstatementbuilder.cpp \
sqlitedatabasebackend.cpp \
sqlitedatabaseconnection.cpp \
sqlitedatabaseconnectionproxy.cpp \
sqliteexception.cpp \
sqliteglobal.cpp \
sqlitereadstatement.cpp \
sqlitereadwritestatement.cpp \
sqlitestatement.cpp \
sqlitetransaction.cpp \
sqliteworkerthread.cpp \
sqlitewritestatement.cpp \
sqlstatementbuilder.cpp \
sqlstatementbuilderexception.cpp \
utf8string.cpp \
utf8stringvector.cpp \
sqlitedatabase.cpp \
sqlitetable.cpp \
sqlitecolumn.cpp \
tablewriteworker.cpp \
tablewriteworkerproxy.cpp
HEADERS += \
columndefinition.h \
createtablesqlstatementbuilder.h \
sqlitedatabasebackend.h \
sqlitedatabaseconnection.h \
sqlitedatabaseconnectionproxy.h \
sqliteexception.h \
sqliteglobal.h \
sqlitereadstatement.h \
sqlitereadwritestatement.h \
sqlitestatement.h \
sqlitetransaction.h \
sqliteworkerthread.h \
sqlitewritestatement.h \
sqlstatementbuilder.h \
sqlstatementbuilderexception.h \
utf8string.h \
utf8stringvector.h \
sqlitedatabase.h \
sqlitetable.h \
sqlitecolumn.h \
tablewriteworker.h \
tablewriteworkerproxy.h \
createtablecommand.h
|