From 2665a8c37d57c2552814e2f2187af72b67a2eb81 Mon Sep 17 00:00:00 2001 From: MinyazevR Date: Thu, 24 Oct 2024 23:21:45 +0300 Subject: [PATCH] Add qtwayland dependecies --- buildScripts/github/install_Linux.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/buildScripts/github/install_Linux.sh b/buildScripts/github/install_Linux.sh index 59d4690eed..57032ef81e 100755 --- a/buildScripts/github/install_Linux.sh +++ b/buildScripts/github/install_Linux.sh @@ -13,14 +13,15 @@ if [ "$ID" = "altlinux" ]; then elif [ "$ID" = "ubuntu" ]; then sudo apt-get update && sudo apt-get install -y --no-install-recommends \ ccache curl libusb-1.0-0-dev make qtscript5-dev qttools5-dev-tools qtmultimedia5-dev libqt5serialport5-dev libqt5svg5-dev \ - libudev-dev python3.${TRIK_PYTHON3_VERSION_MINOR}-dev qtbase5-private-dev libqt5waylandclient5 libqt5waylandcompositor5 + libudev-dev python3.${TRIK_PYTHON3_VERSION_MINOR}-dev qtbase5-private-dev qtwayland5 elif [[ "$ID" = "rocky" || "$ID" = '"rocky"' ]]; then yum update -y && yum install -y epel-release yum install --allowerasing -y sudo which libusbx-devel curl wget make gcc-toolset-"$GCC_VERSION"-{gcc-c++,libasan-devel,libubsan-devel,gdb} \ git-core ccache zlib-devel rsync "$TRIK_PYTHON"-{devel,pip,urllib3} mesa-libGL-devel systemd-devel fontconfig p7zip xz time yum install -y libxkbcommon-x11 qt5-qtbase-gui #no desire to enumerate all required libraries for QtIFw yum install -y pulseaudio-libs-glib2 # to run TS and 2D-model even with `minimal` platform - yum install -y qt5-qtscript-devel qt5-qttools-devel qt5-qtmultimedia-devel qt5-qtserialport-devel qt5-qtsvg-devel qt5-qtbase-devel qt5-qtbase-private-devel + yum install -y qt5-qtscript-devel qt5-qttools-devel qt5-qtmultimedia-devel qt5-qtserialport-devel qt5-qtsvg-devel qt5-qtbase-devel qt5-qtbase-private-devel \ + qt5-qtwayland-devel echo "source scl_source enable gcc-toolset-$GCC_VERSION" >> ~/.bash_profile fi