summaryrefslogtreecommitdiffstats
path: root/examples/wayland/server-buffer/client/client.pro
blob: 6e5cc87e603f04901d53ff86c08995c1cda8748f (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) {
    LIBS += -lwayland-client
} else {
    CONFIG += link_pkgconfig
    PKGCONFIG += wayland-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