d58596fd61
Math functions are linked in by default on INTEGRITY. Change-Id: I737ae87c02b2321caca3975f69525731e839d1a7 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>
24 lines
614 B
Prolog
24 lines
614 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:!darwin:!haiku:!integity: 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
|
|
}
|