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 8b22458 commit a1c788bCopy full SHA for a1c788b
src/deployers/PlatformPluginsDeployer.cpp
@@ -31,6 +31,13 @@ bool PlatformPluginsDeployer::deploy() {
31
ldLog() << "Deploying extra platform plugin: " << platformToDeploy << std::endl;
32
if (!appDir.deployLibrary(qtPluginsPath / "platforms" / platformToDeploy, appDir.path() / "usr/plugins/platforms/"))
33
return false;
34
+
35
+ using namespace linuxdeploy::util::misc;
36
+ if (stringStartsWith(platformToDeploy, "libqwayland")) {
37
+ if (!deployStandardQtPlugins({"wayland-decoration-client", "wayland-shell-integration"})) {
38
+ return false;
39
+ }
40
41
}
42
43
0 commit comments