Fix linking of autotests on Windows.
Partial revert of 94fc875079. All dependent
modules need to be specified in the QT variable, except core and gui, which
are there by default.
Change-Id: Ie8ffed56de03a37da191772fa321ed162e44a50d
Reviewed-by: Jason McDonald <jason.mcdonald@nokia.com>
bb10
parent
ec43408d44
commit
ae768911ee
|
|
@ -1,6 +1,6 @@
|
|||
CONFIG += testcase
|
||||
TARGET = tst_qdatastream
|
||||
QT = gui widgets testlib
|
||||
QT += widgets testlib
|
||||
SOURCES = tst_qdatastream.cpp
|
||||
|
||||
wince* {
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
CONFIG += testcase
|
||||
TARGET = tst_qabstractitemmodel
|
||||
QT = widgets testlib
|
||||
QT += widgets testlib
|
||||
|
||||
mtdir = ../../../integrationtests/modeltest
|
||||
INCLUDEPATH += $$PWD/$${mtdir}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
CONFIG += testcase
|
||||
TARGET = tst_qeventloop
|
||||
QT = network testlib
|
||||
QT = core network testlib
|
||||
SOURCES = tst_qeventloop.cpp
|
||||
|
||||
win32:!wince*:LIBS += -luser32
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
CONFIG += testcase
|
||||
TARGET = tst_qitemmodel
|
||||
QT = widgets sql testlib
|
||||
QT += widgets sql testlib
|
||||
SOURCES = tst_qitemmodel.cpp
|
||||
|
||||
# NOTE: The deployment of the sqldrivers is disabled on purpose.
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
CONFIG += testcase
|
||||
TARGET = tst_qmimedata
|
||||
QT = gui testlib
|
||||
QT += testlib
|
||||
SOURCES = tst_qmimedata.cpp
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
CONFIG += testcase
|
||||
TARGET = tst_qpointer
|
||||
QT = widgets testlib
|
||||
QT += widgets testlib
|
||||
SOURCES = tst_qpointer.cpp
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
CONFIG += testcase
|
||||
TARGET = tst_qsignalmapper
|
||||
QT = widgets testlib
|
||||
QT += widgets testlib
|
||||
SOURCES = tst_qsignalmapper.cpp
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
CONFIG += testcase
|
||||
TARGET = tst_qtranslator
|
||||
QT = widgets testlib
|
||||
QT += widgets testlib
|
||||
SOURCES = tst_qtranslator.cpp
|
||||
RESOURCES += qtranslator.qrc
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
CONFIG += testcase
|
||||
TARGET = tst_qvariant
|
||||
QT = widgets network testlib
|
||||
QT += widgets network testlib
|
||||
SOURCES = tst_qvariant.cpp
|
||||
|
||||
mac: CONFIG += insignificant_test # QTBUG-QTBUG-22747
|
||||
|
|
|
|||
Loading…
Reference in New Issue