From 973ff5f2d1da43b3aa8f2b8d528536e3f90d495f Mon Sep 17 00:00:00 2001 From: Reg Tiangha Date: Sat, 20 Jul 2024 11:02:32 -0600 Subject: [PATCH] ci: Bundle QT Wayland libraries into Linux AppImage --- .ci/linux.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.ci/linux.sh b/.ci/linux.sh index ee971f4bc0..7dd860604e 100755 --- a/.ci/linux.sh +++ b/.ci/linux.sh @@ -3,6 +3,9 @@ if [ "$TARGET" = "appimage" ]; then # Compile the AppImage we distribute with Clang. export EXTRA_CMAKE_FLAGS=(-DCITRA_USE_PRECOMPILED_HEADERS=OFF -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_C_COMPILER=clang -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)