summaryrefslogtreecommitdiffstats
path: root/examples/wayland/custom-extension/qml-client/qml-client.pro
blob: 8bddb730b423d551d930d8196324aa04aaf6e37a (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
25
26
TEMPLATE = app
QT += qml quick waylandclient gui-private
CONFIG += wayland-scanner

CONFIG += qmltypes
QML_IMPORT_NAME = io.qt.examples.customextension
QML_IMPORT_MAJOR_VERSION = 1

INCLUDEPATH += $$PWD/../client-common

WAYLANDCLIENTSOURCES += ../protocol/custom.xml

SOURCES += main.cpp \
    ../client-common/customextension.cpp

HEADERS += \
    ../client-common/customextension.h

TARGET = custom-extension-qml-client

RESOURCES += qml.qrc

target.path = $$[QT_INSTALL_EXAMPLES]/wayland/custom-extension/qml-client
INSTALLS += target