aboutsummaryrefslogtreecommitdiffstats
path: root/tools/qmlplugindump/qmlplugindump.pro
blob: 42d17a72cc9365af1330c141025ce79f1089bc79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
QT += qml qml-private quick-private core-private

#
# qmlplugindump is an applicaton bundle on the mac
# so that we can include an Info.plist, which is needed
# to surpress qmlplugindump popping up in the dock
# when launched.
#

CONFIG += qpa_minimal_plugin

SOURCES += \
    main.cpp \
    qmlstreamwriter.cpp

HEADERS += \
    qmlstreamwriter.h

OTHER_FILES += Info.plist
macx: QMAKE_INFO_PLIST = Info.plist

load(qt_tool)