blob: f5751e2154d1dff35ab67b9ee6ed60a8870d2e0d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
TARGET = qwayland
include(../../qpluginbase.pri)
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/platforms
SOURCES = main.cpp \
qwaylandintegration.cpp \
qwaylandwindowsurface.cpp \
qwaylandinputdevice.cpp
HEADERS = qwaylandintegration.h \
qwaylandwindowsurface.h
INCLUDEPATH += /usr/include/libdrm
LIBS += -lwayland-client -ldrm -lxkbcommon
include (../fontdatabases/fontconfig/fontconfig.pri)
target.path += $$[QT_INSTALL_PLUGINS]/platforms
INSTALLS += target
|