summaryrefslogtreecommitdiffstats
path: root/tests/auto/client/client.pro
blob: 895b5c8aa60323c250f7f3749534a9b190e0e0dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
CONFIG += testcase link_pkgconfig
TARGET = tst_client

QT += testlib
QT += core-private gui-private

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

WAYLANDSERVERSOURCES += \
    ../../../src/3rdparty/protocol/wayland.xml

SOURCES += tst_client.cpp \
           mockcompositor.cpp \
           mockinput.cpp \
           mockshell.cpp \
           mocksurface.cpp \
           mockoutput.cpp
HEADERS += mockcompositor.h \
           mocksurface.h