File: qml-client.pro

package info (click to toggle)
qt6-wayland 6.9.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 8,324 kB
  • sloc: cpp: 56,316; xml: 11,445; ansic: 135; sh: 30; makefile: 23
file content (26 lines) | stat: -rw-r--r-- 541 bytes parent folder | download | duplicates (2)
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