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