From 21b20ac4206abbffbd537ce425d2a7253b8e3505 Mon Sep 17 00:00:00 2001 From: Romain LE JEUNE Date: Thu, 27 Apr 2023 10:07:57 +0200 Subject: [PATCH] fix(GODT-2410): Keep hardcoded version for ICU libs since Qt is looking to load the exact version it has been bundled with. --- internal/frontend/bridge-gui/bridge-gui/DeployLinux.cmake | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/internal/frontend/bridge-gui/bridge-gui/DeployLinux.cmake b/internal/frontend/bridge-gui/bridge-gui/DeployLinux.cmake index c318eaf6..10e1ea16 100644 --- a/internal/frontend/bridge-gui/bridge-gui/DeployLinux.cmake +++ b/internal/frontend/bridge-gui/bridge-gui/DeployLinux.cmake @@ -54,9 +54,9 @@ AppendQt6Lib("libQt6Gui.so.6") AppendQt6Lib("libQt6Core.so.6") AppendQt6Lib("libQt6QuickTemplates2.so.6") AppendQt6Lib("libQt6DBus.so.6") -AppendQt6Lib("libicui18n.so") -AppendQt6Lib("libicuuc.so") -AppendQt6Lib("libicudata.so") +AppendQt6Lib("libicui18n.so.56") +AppendQt6Lib("libicuuc.so.56") +AppendQt6Lib("libicudata.so.56") AppendQt6Lib("libQt6XcbQpa.so.6") AppendQt6Lib("libQt6WaylandClient.so.6") AppendQt6Lib("libQt6WlShellIntegration.so.6")