Qt 5.0 beta requires changing the default to the 5.0 API, disabling the deprecated code. However, tests should test (and often do) the compatibility API too, so turn it back on. Task-number: QTBUG-25053 Change-Id: I8129c3ef3cb58541c95a32d083850d9e7f768927 Reviewed-by: Lars Knoll <lars.knoll@nokia.com> Reviewed-by: Olivier Goffart <ogoffart@woboq.com>
21 lines
330 B
Prolog
21 lines
330 B
Prolog
CONFIG += testcase
|
|
TARGET = tst_qsqldatabase
|
|
SOURCES += tst_qsqldatabase.cpp
|
|
|
|
QT = core sql testlib
|
|
|
|
win32: {
|
|
!wince*: LIBS += -lws2_32
|
|
else: LIBS += -lws2
|
|
}
|
|
|
|
wince*: {
|
|
DEPLOYMENT_PLUGIN += qsqlite
|
|
|
|
testData.files = testdata
|
|
testData.path = .
|
|
|
|
DEPLOYMENT += testData
|
|
}
|
|
DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0
|