diff --git a/src/deployers/CMakeLists.txt b/src/deployers/CMakeLists.txt index 0833e05..bf043e3 100644 --- a/src/deployers/CMakeLists.txt +++ b/src/deployers/CMakeLists.txt @@ -22,6 +22,8 @@ set(CLASSES TextToSpeechPluginsDeployer TlsBackendsDeployer WaylandcompositorPluginsDeployer + WaylandShellIntegrationPluginsDeployer + WaylandGraphicsIntegrationClientPluginsDeployer ) # TODO: CMake <= 3.7 (at least!) doesn't allow for using OBJECT libraries with target_link_libraries diff --git a/src/deployers/PluginsDeployerFactory.cpp b/src/deployers/PluginsDeployerFactory.cpp index ea88ec2..59d71ca 100644 --- a/src/deployers/PluginsDeployerFactory.cpp +++ b/src/deployers/PluginsDeployerFactory.cpp @@ -18,6 +18,8 @@ #include "XcbglIntegrationPluginsDeployer.h" #include "TlsBackendsDeployer.h" #include "WaylandcompositorPluginsDeployer.h" +#include "WaylandShellIntegrationPluginsDeployer.h" +#include "WaylandGraphicsIntegrationClientPluginsDeployer.h" using namespace linuxdeploy::plugin::qt; using namespace linuxdeploy::core::appdir; @@ -108,6 +110,14 @@ std::vector> PluginsDeployerFactory::getDeploye return {getInstance(moduleName)}; } + if (moduleName == "wayland-shell-integration") { + return {getInstance(moduleName)}; + } + + if (moduleName == "wayland-graphics-integration-client") { + return {getInstance(moduleName)}; + } + // fallback return {getInstance(moduleName)}; } diff --git a/src/deployers/WaylandGraphicsIntegrationClientPluginsDeployer.cpp b/src/deployers/WaylandGraphicsIntegrationClientPluginsDeployer.cpp new file mode 100644 index 0000000..3d5ab81 --- /dev/null +++ b/src/deployers/WaylandGraphicsIntegrationClientPluginsDeployer.cpp @@ -0,0 +1,34 @@ +// system headers +#include + +// library headers +#include +#include + +// local headers +#include "WaylandGraphicsIntegrationClientPluginsDeployer.h" + +using namespace linuxdeploy::plugin::qt; +using namespace linuxdeploy::core::log; + +namespace fs = std::filesystem; + +bool WaylandGraphicsIntegrationClientPluginsDeployer::deploy() { + // calling the default code is optional, but it won't hurt for now + if (!BasicPluginsDeployer::deploy()) + return false; + + ldLog() << "Deploying Wayland Shell Integration plugins" << std::endl; + + for (fs::directory_iterator i(qtPluginsPath / "wayland-graphics-integration-client"); i != fs::directory_iterator(); ++i) { + if (i->path().extension() == ".debug") { + ldLog() << LD_DEBUG << "skipping .debug file:" << i->path() << std::endl; + continue; + } + + if (!appDir.deployLibrary(*i, appDir.path() / "usr/plugins/wayland-graphics-integration-client/")) + return false; + } + + return true; +} diff --git a/src/deployers/WaylandGraphicsIntegrationClientPluginsDeployer.h b/src/deployers/WaylandGraphicsIntegrationClientPluginsDeployer.h new file mode 100644 index 0000000..17cd10a --- /dev/null +++ b/src/deployers/WaylandGraphicsIntegrationClientPluginsDeployer.h @@ -0,0 +1,17 @@ +#pragma once + +#include "BasicPluginsDeployer.h" + +namespace linuxdeploy { + namespace plugin { + namespace qt { + class WaylandGraphicsIntegrationClientPluginsDeployer : public BasicPluginsDeployer { + public: + // we can just use the base class's constructor + using BasicPluginsDeployer::BasicPluginsDeployer; + + bool deploy() override; + }; + } + } +} \ No newline at end of file diff --git a/src/deployers/WaylandShellIntegrationPluginsDeployer.cpp b/src/deployers/WaylandShellIntegrationPluginsDeployer.cpp new file mode 100644 index 0000000..a8b6e82 --- /dev/null +++ b/src/deployers/WaylandShellIntegrationPluginsDeployer.cpp @@ -0,0 +1,38 @@ +// system headers +#include + +// library headers +#include +#include + +// local headers +#include "WaylandShellIntegrationPluginsDeployer.h" + +using namespace linuxdeploy::plugin::qt; +using namespace linuxdeploy::core::log; + +namespace fs = std::filesystem; + +bool WaylandShellIntegrationPluginsDeployer::deploy() { + // calling the default code is optional, but it won't hurt for now + if (!BasicPluginsDeployer::deploy()) + return false; + + ldLog() << "Deploying Wayland Shell Integration plugins" << std::endl; + + // always deploy default platform + if (!appDir.deployLibrary(qtPluginsPath / "wayland-shell-integration/libxdg-shell.so", appDir.path() / "usr/plugins/wayland-shell-integration/")) + return false; + + // deploy Wayland Shell Integration platform plugins, if any + const auto* const platformPluginsFromEnvData = getenv("EXTRA_WAYLAND_SHELL_INTEGRATION_PLUGINS"); + if (platformPluginsFromEnvData != nullptr) { + for (const auto& platformToDeploy : linuxdeploy::util::split(std::string(platformPluginsFromEnvData), ';')) { + ldLog() << "Deploying extra Wayland Shell Integration plugin: " << platformToDeploy << std::endl; + if (!appDir.deployLibrary(qtPluginsPath / "wayland-shell-integration" / platformToDeploy, appDir.path() / "usr/plugins/wayland-shell-integration/")) + return false; + } + } + + return true; +} diff --git a/src/deployers/WaylandShellIntegrationPluginsDeployer.h b/src/deployers/WaylandShellIntegrationPluginsDeployer.h new file mode 100644 index 0000000..91e67c5 --- /dev/null +++ b/src/deployers/WaylandShellIntegrationPluginsDeployer.h @@ -0,0 +1,17 @@ +#pragma once + +#include "BasicPluginsDeployer.h" + +namespace linuxdeploy { + namespace plugin { + namespace qt { + class WaylandShellIntegrationPluginsDeployer : public BasicPluginsDeployer { + public: + // we can just use the base class's constructor + using BasicPluginsDeployer::BasicPluginsDeployer; + + bool deploy() override; + }; + } + } +} \ No newline at end of file diff --git a/src/qt-modules.h b/src/qt-modules.h index 36246f7..0c85c01 100644 --- a/src/qt-modules.h +++ b/src/qt-modules.h @@ -121,6 +121,8 @@ static const std::vector Qt6Modules = { {"test", "libQt6Test", "qtbase"}, {"uitools", "libQt6UiTools", ""}, {"waylandclient", "libQt6WaylandClient", ""}, + {"wayland-shell-integration", "libQt6WlShellIntegration", ""}, + {"wayland-graphics-integration-client", "", ""}, {"waylandcompositor", "libQt6WaylandCompositor", ""}, {"webenginecore", "libQt6WebEngineCore", ""}, {"webengine", "libQt6WebEngine", "qtwebengine"},