summaryrefslogtreecommitdiffstats
path: root/tests/auto/client/client/client.pro
blob: 006d130a0398bf0086eb7c075b8b3195e96da05b (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
27
28
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
}

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

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

HEADERS += \
    mockcompositor.h \
    mockinput.h \
    mocksurface.h