summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/eglfs/deviceintegration/eglfs_kms_egldevice/eglfs_kms_egldevice.pro
blob: e2263f6cbf8de8ef862e34791ce84895836088a2 (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
TARGET = qeglfs-kms-egldevice-integration

QT += core-private gui-private platformsupport-private eglfs_device_lib-private eglfs_kms_support-private

INCLUDEPATH += $$PWD/../.. $$PWD/../eglfs_kms_support

# Avoid X11 header collision, use generic EGL native types
DEFINES += QT_EGL_NO_X11

CONFIG += link_pkgconfig
!contains(QT_CONFIG, no-pkg-config) {
    PKGCONFIG += libdrm
} else {
    LIBS += -ldrm
}

CONFIG += egl
QMAKE_LFLAGS += $$QMAKE_LFLAGS_NOUNDEF

SOURCES += $$PWD/qeglfskmsegldevicemain.cpp \
           $$PWD/qeglfskmsegldeviceintegration.cpp \
    qeglfskmsegldevice.cpp \
    qeglfskmsegldevicescreen.cpp

HEADERS += $$PWD/qeglfskmsegldeviceintegration.h \
    qeglfskmsegldevice.h \
    qeglfskmsegldevicescreen.h

OTHER_FILES += $$PWD/eglfs_kms_egldevice.json

PLUGIN_TYPE = egldeviceintegrations
PLUGIN_CLASS_NAME = QEglFSKmsEglDeviceIntegrationPlugin
load(qt_plugin)