summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/wayland/wayland.pro
blob: f78e4b334d1d185f917e8068df354ac5ce31bf6b (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
47
48
49
50
51
52
53
TARGET = qwayland
include(../../qpluginbase.pri)

QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/platforms

DEFINES += Q_PLATFORM_WAYLAND
DEFINES += $$QMAKE_DEFINES_WAYLAND

SOURCES =   main.cpp \
            qwaylandintegration.cpp \
            qwaylandshmsurface.cpp \
            qwaylandinputdevice.cpp \
            qwaylandcursor.cpp \
            qwaylanddisplay.cpp \
            qwaylandwindow.cpp \
            qwaylandscreen.cpp \
            qwaylandshmwindow.cpp

HEADERS =   qwaylandintegration.h \
            qwaylandcursor.h \
            qwaylanddisplay.h \
            qwaylandwindow.h \
            qwaylandscreen.h \
            qwaylandshmsurface.h \
            qwaylanddrmsurface.h \
            qwaylandbuffer.h \
            qwaylandinclude.h \
            qwaylandeglwindow.h \
            qwaylandshmwindow.h

INCLUDEPATH += $$QMAKE_INCDIR_WAYLAND
LIBS += $$QMAKE_LIBS_WAYLAND
QMAKE_CXXFLAGS += $$QMAKE_CFLAGS_WAYLAND

contains(QT_CONFIG, opengles2) {
    QT += opengl
    LIBS += -lwayland-egl -lEGL

    SOURCES += qwaylanddrmsurface.cpp \
            qwaylandglcontext.cpp \
            ../eglconvenience/qeglconvenience.cpp \
            qwaylandeglwindow.cpp

    HEADERS += qwaylandglcontext.h \
            ../eglconvenience/qeglconvenience.h \

    DEFINES += QT_WAYLAND_GL_SUPPORT
}

include (../fontdatabases/genericunix/genericunix.pri)

target.path += $$[QT_INSTALL_PLUGINS]/platforms
INSTALLS += target