From 8fd0fb8bf01c8dcfa2c334b59a29d370921eac2d Mon Sep 17 00:00:00 2001 From: Miguel <81558772+Miguel-hrvs@users.noreply.github.com> Date: Thu, 25 Jul 2024 13:42:19 +0200 Subject: [PATCH] bundle qt wayland into appimage by rtiangha (#212) --- .ci/linux.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.ci/linux.sh b/.ci/linux.sh index 0fd5aab46..af07c1b05 100755 --- a/.ci/linux.sh +++ b/.ci/linux.sh @@ -2,6 +2,9 @@ if [ "$TARGET" = "appimage" ]; then export EXTRA_CMAKE_FLAGS=(-DCMAKE_LINKER=/etc/bin/ld.lld) + # Bundle required QT wayland libraries + export EXTRA_QT_PLUGINS="waylandcompositor" + export EXTRA_PLATFORM_PLUGINS="libqwayland-egl.so;libqwayland-generic.so" else # For the linux-fresh verification target, verify compilation without PCH as well. export EXTRA_CMAKE_FLAGS=(-DCITRA_USE_PRECOMPILED_HEADERS=OFF)