blob: d562e47c5523f7ee79807240e66b07224af39067 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
CONFIG += testcase
TARGET = tst_qsqldatabase
SOURCES += tst_qsqldatabase.cpp
QT = core sql testlib core-private sql-private
win32: {
!wince*: LIBS += -lws2_32
else: LIBS += -lws2
}
wince*: {
DEPLOYMENT_PLUGIN += qsqlite
testData.files = testdata
testData.path = .
DEPLOYMENT += testData
}
|