From 646af3c143cd031225e48d2e0db6a124d2334c08 Mon Sep 17 00:00:00 2001 From: Zephyron Date: Sun, 9 Feb 2025 11:33:06 +1000 Subject: [PATCH] Downgrade Qt version from 6.8.2 to 6.7.3 - Changes the downloaded Qt version from 6.8.2 to 6.7.3 when not using system Qt. - This rolls back to a more stable release version of Qt. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 16054dcf0..1c9715740 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -422,7 +422,7 @@ endif() if (ENABLE_QT) if (NOT USE_SYSTEM_QT) - download_qt(6.8.2) + download_qt(6.7.3) endif() find_package(Qt6 REQUIRED COMPONENTS Widgets Multimedia Concurrent Network)