9f88e9a0a8
IID_IAccessible requires linking with the uuid lib. Change-Id: Ic34d5c9bdb6168df7d2447c8aebf1bc519e5f7cd Reviewed-by: Janne Anttila <janne.anttila@digia.com> Reviewed-by: Kai Koehne <kai.koehne@digia.com> Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com> Reviewed-by: Jan Arve Sæther <jan-arve.saether@digia.com>
23 lines
554 B
Prolog
23 lines
554 B
Prolog
CONFIG += testcase
|
|
TARGET = tst_qaccessibility
|
|
requires(contains(QT_CONFIG,accessibility))
|
|
QT += widgets testlib gui-private
|
|
SOURCES += tst_qaccessibility.cpp
|
|
|
|
unix:!mac:LIBS+=-lm
|
|
|
|
wince*: {
|
|
accessneeded.files = $$QT_BUILD_TREE\\plugins\\accessible\\*.dll
|
|
accessneeded.path = accessible
|
|
DEPLOYMENT += accessneeded
|
|
}
|
|
|
|
win32 {
|
|
!*g++ {
|
|
include(../../../../src/3rdparty/iaccessible2/iaccessible2.pri)
|
|
DEFINES += QT_SUPPORTS_IACCESSIBLE2
|
|
}
|
|
LIBS += -loleacc -loleaut32 -lole32 -luuid
|
|
}
|
|
DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0
|