summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@qt.io>2020-10-16 07:49:04 +0200
committerEskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@qt.io>2020-10-20 18:05:04 +0200
commit0d18b84e7c65ed863b4db17a10f5a332ced2dc2a (patch)
tree02935be4603c7fa378682fc67f1adf630cb85aff
parent0db685834f8377e41b147d3367b8ec514841eff5 (diff)
Fix loading EGLStream client buffer integration in static build
The plugin name in the .pro file was not matching the one in the code, so we would get missing symbols when trying to link a static build against the plugin. Change-Id: Iecc491a62f20b09ee4dfecd42a5f8d1a57211fa3 Reviewed-by: Eirik Aavitsland <eirik.aavitsland@qt.io>
-rw-r--r--src/plugins/hardwareintegration/compositor/wayland-eglstream-controller/wayland-eglstream-controller.pro2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/hardwareintegration/compositor/wayland-eglstream-controller/wayland-eglstream-controller.pro b/src/plugins/hardwareintegration/compositor/wayland-eglstream-controller/wayland-eglstream-controller.pro
index 6d259a687..0d1bfb0ea 100644
--- a/src/plugins/hardwareintegration/compositor/wayland-eglstream-controller/wayland-eglstream-controller.pro
+++ b/src/plugins/hardwareintegration/compositor/wayland-eglstream-controller/wayland-eglstream-controller.pro
@@ -10,5 +10,5 @@ TARGET = qt-wayland-compositor-wayland-eglstream-controller
include(../../../../hardwareintegration/compositor/wayland-eglstream-controller/wayland-eglstream-controller.pri)
PLUGIN_TYPE = wayland-graphics-integration-server
-PLUGIN_CLASS_NAME = QWaylandEglStreamBufferIntegrationPlugin
+PLUGIN_CLASS_NAME = QWaylandEglStreamClientBufferIntegrationPlugin
load(qt_plugin)