From 544c6b4bbc92514d2cd736f0062734ff1fd6d5f0 Mon Sep 17 00:00:00 2001 From: OpenSauce04 Date: Wed, 2 Apr 2025 16:36:56 +0100 Subject: [PATCH] ci: Disable standalone room executable for AppImage --- .ci/linux.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.ci/linux.sh b/.ci/linux.sh index 0603a0d7a..b50df3a36 100755 --- a/.ci/linux.sh +++ b/.ci/linux.sh @@ -2,7 +2,10 @@ if [ "$TARGET" = "appimage" ]; then # Compile the AppImage we distribute with Clang. - export EXTRA_CMAKE_FLAGS=(-DCMAKE_CXX_COMPILER=clang++ -DCMAKE_C_COMPILER=clang -DCMAKE_LINKER=/etc/bin/ld.lld) + export EXTRA_CMAKE_FLAGS=(-DCMAKE_CXX_COMPILER=clang++ + -DCMAKE_C_COMPILER=clang + -DCMAKE_LINKER=/etc/bin/ld.lld + -DENABLE_ROOM_STANDALONE=OFF) # Bundle required QT wayland libraries export EXTRA_QT_PLUGINS="waylandcompositor" export EXTRA_PLATFORM_PLUGINS="libqwayland-egl.so;libqwayland-generic.so"