blob: b6829dc2fed27227d5db0ed006241bd0e0bccbab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
CONFIG += qttest_p4
SOURCES += tst_qaccessibility_mac.cpp
TARGET = tst_qaccessibility_mac
RESOURCES = qaccessibility_mac.qrc
mac {
# this setup should support both building as an autotest
# (where uilib isn't built by default), and when running shadow
# builds (where QTDIR points to the build directory).
# autotest + shadow build is not supported :)
exists($$(QTDIR)/tools/designer/src/lib/uilib/uilib.pri) {
include($$(QTDIR)/tools/designer/src/lib/uilib/uilib.pri)
INCLUDEPATH += $$(QTDIR)/tools/designer/src/uitools
SOURCES += $$(QTDIR)/tools/designer/src/uitools/quiloader.cpp
HEADERS += $$(QTDIR)/tools/designer/src/uitools/quiloader.h
} else {
CONFIG += uitools
}
QT += xml
LIBS += -framework ApplicationServices -framework Carbon
}
|