We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee23002 commit 3f0d4a4Copy full SHA for 3f0d4a4
src/deployers/PluginsDeployerFactory.cpp
@@ -18,6 +18,7 @@
18
#include "XcbglIntegrationPluginsDeployer.h"
19
#include "TlsBackendsDeployer.h"
20
#include "WaylandcompositorPluginsDeployer.h"
21
+#include "WaylandShellIntegrationPluginsDeployer.h"
22
23
using namespace linuxdeploy::plugin::qt;
24
using namespace linuxdeploy::core::appdir;
@@ -108,6 +109,10 @@ std::vector<std::shared_ptr<PluginsDeployer>> PluginsDeployerFactory::getDeploye
108
109
return {getInstance<WaylandcompositorPluginsDeployer>(moduleName)};
110
}
111
112
+ if (moduleName == "wayland-shell-integration") {
113
+ return {getInstance<WaylandShellIntegrationPluginsDeployer>(moduleName)};
114
+ }
115
+
116
// fallback
117
return {getInstance<BasicPluginsDeployer>(moduleName)};
118
0 commit comments