d32f47b703
Fix style issues along the way. Change-Id: Ic6a6de28e198eb0b14c198b802e78845703909b9 Reviewed-by: Joerg Bornemann <joerg.bornemann@theqtcompany.com>
25 lines
640 B
Prolog
25 lines
640 B
Prolog
CONFIG += testcase
|
|
TARGET = tst_qaccessibility
|
|
requires(contains(QT_CONFIG,accessibility))
|
|
QT += testlib core-private gui-private widgets-private
|
|
SOURCES += tst_qaccessibility.cpp
|
|
HEADERS += accessiblewidgets.h
|
|
|
|
unix:!mac:!haiku:LIBS+=-lm
|
|
|
|
wince {
|
|
accessneeded.files = $$QT_BUILD_TREE\\plugins\\accessible\\*.dll
|
|
accessneeded.path = accessible
|
|
DEPLOYMENT += accessneeded
|
|
}
|
|
|
|
win32 {
|
|
!*g++:!winrt {
|
|
include(../../../../src/3rdparty/iaccessible2/iaccessible2.pri)
|
|
DEFINES += QT_SUPPORTS_IACCESSIBLE2
|
|
}
|
|
LIBS += -luuid
|
|
!winphone: LIBS += -loleacc -loleaut32 -lole32
|
|
}
|
|
DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0
|