From c327cb08f4171b48c7b3a42d1e871fc734ac936f Mon Sep 17 00:00:00 2001 From: Eike Ziller Date: Fri, 1 Nov 2024 10:36:45 +0100 Subject: COIN: Add instructions for oldest supported Qt version And fix installation of ICU, that was installed at the wrong location (the toplevel Qt directory instead of lib/, which didn't matter on systems where the right ICU version was preinstalled anyway) Change-Id: I53dcd6126b7b46358dd9aa0622e58a8c614bff3f Reviewed-by: David Schulz --- scripts/install_qt.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'scripts/install_qt.py') diff --git a/scripts/install_qt.py b/scripts/install_qt.py index c2c68f0e2ad..777349c91d0 100755 --- a/scripts/install_qt.py +++ b/scripts/install_qt.py @@ -4,7 +4,7 @@ from __future__ import annotations import argparse -from common import download_and_extract +from common import download_and_extract_tuples from pathlib import Path import subprocess import sys @@ -73,10 +73,10 @@ def install_qt( with TemporaryDirectory() as temporary_dir: if need_to_install_qt: - urls = qt_modules + url_target_tuples = [(url, qt_path) for url in qt_modules] if icu_url: - qt_modules.append(icu_url) - download_and_extract(urls, qt_path, Path(temporary_dir)) + url_target_tuples.append((icu_url, qt_path / 'lib')) + download_and_extract_tuples(url_target_tuples, Path(temporary_dir)) patch_qt(qt_path) -- cgit v1.2.3