blob: 7e8a1fab67236a00ab5004f7a5a68648fd9b10d8 (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
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 \
qwaylandcursor.cpp \
qwaylanddisplay.cpp \
qwaylandwindow.cpp \
qwaylandscreen.cpp \
../eglconvenience/qeglconvenience.cpp \
qwaylandeglwindow.cpp \
qwaylandshmwindow.cpp
HEADERS = qwaylandintegration.h \
qwaylandcursor.h \
qwaylanddisplay.h \
qwaylandwindow.h \
qwaylandscreen.h \
qwaylandglcontext.h \
qwaylandshmsurface.h \
qwaylanddrmsurface.h \
qwaylandbuffer.h \
../eglconvenience/qeglconvenience.h \
qwaylandinclude.h \
qwaylandeglwindow.h \
qwaylandshmwindow.h
contains(QT_CONFIG, opengl) {
QT += opengl
}
LIBS += -lwayland-client -lwayland-egl -lxkbcommon -lEGL
unix {
CONFIG += link_pkgconfig
PKGCONFIG += libdrm
}
include (../fontdatabases/fontconfig/fontconfig.pri)
target.path += $$[QT_INSTALL_PLUGINS]/platforms
INSTALLS += target
|