summaryrefslogtreecommitdiffstats
path: root/examples/wayland/server-buffer/client/client.pro
blob: 8aef051c179175ad352d66ce0848aba870732809 (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
TEMPLATE = app
TARGET = client
INCLUDEPATH += .

QT += waylandclient-private

!contains(QT_CONFIG, no-pkg-config) {
    PKGCONFIG += wayland-client
    CONFIG += link_pkgconfig
} else {
    LIBS += -lwayland-client
}

CONFIG += wayland-scanner
WAYLANDCLIENTSOURCES += ../share-buffer.xml

SOURCES += \
    main.cpp \
    serverbufferrenderer.cpp

HEADERS += \
    serverbufferrenderer.h

target.path = $$[QT_INSTALL_EXAMPLES]/wayland/server-buffer/client
INSTALLS += target