blob: b0cb98b3b6094d0d0e76fab5d58716157e3ee773 (
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
|
TARGET = qwayland
include(../../qpluginbase.pri)
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/platforms
SOURCES = main.cpp \
qwaylandintegration.cpp \
qwaylandshmsurface.cpp \
qwaylanddrmsurface.cpp \
qwaylandinputdevice.cpp \
qwaylandglcontext.cpp
HEADERS = qwaylandintegration.h \
qwaylandwindowsurface.h
contains(QT_CONFIG, opengl) {
QT += opengl
}
LIBS += -lwayland-client -ldrm -lxkbcommon -lEGL -lGLESv2
include (../fontdatabases/fontconfig/fontconfig.pri)
target.path += $$[QT_INSTALL_PLUGINS]/platforms
INSTALLS += target
|