672b5b7ab6
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>
27 lines
570 B
Prolog
27 lines
570 B
Prolog
CONFIG += testcase
|
|
testcase.timeout = 600 # this test is slow
|
|
TARGET = tst_qwidget
|
|
|
|
QT += widgets core-private gui-private widgets-private testlib
|
|
|
|
SOURCES += tst_qwidget.cpp
|
|
RESOURCES = qwidget.qrc
|
|
|
|
aix-g++*:QMAKE_CXXFLAGS+=-fpermissive
|
|
|
|
CONFIG += x11inc
|
|
|
|
mac {
|
|
LIBS += -framework Security -framework AppKit -framework Carbon
|
|
OBJECTIVE_SOURCES += tst_qwidget_mac_helpers.mm
|
|
}
|
|
|
|
x11 {
|
|
LIBS += $$QMAKE_LIBS_X11
|
|
}
|
|
|
|
!wince*:win32: LIBS += -luser32 -lgdi32
|
|
|
|
mac:CONFIG+=insignificant_test # QTBUG-25300, QTBUG-23695
|
|
DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0
|