Skip to content

Commit 3f0d4a4

Browse files
committed
PluginDeployerFactory: Add wayland-shell-integration
1 parent ee23002 commit 3f0d4a4

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/deployers/PluginsDeployerFactory.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
#include "XcbglIntegrationPluginsDeployer.h"
1919
#include "TlsBackendsDeployer.h"
2020
#include "WaylandcompositorPluginsDeployer.h"
21+
#include "WaylandShellIntegrationPluginsDeployer.h"
2122

2223
using namespace linuxdeploy::plugin::qt;
2324
using namespace linuxdeploy::core::appdir;
@@ -108,6 +109,10 @@ std::vector<std::shared_ptr<PluginsDeployer>> PluginsDeployerFactory::getDeploye
108109
return {getInstance<WaylandcompositorPluginsDeployer>(moduleName)};
109110
}
110111

112+
if (moduleName == "wayland-shell-integration") {
113+
return {getInstance<WaylandShellIntegrationPluginsDeployer>(moduleName)};
114+
}
115+
111116
// fallback
112117
return {getInstance<BasicPluginsDeployer>(moduleName)};
113118
}

0 commit comments

Comments
 (0)