From 33d54e595f8623e5d8814815c8663857d8e5cc2d Mon Sep 17 00:00:00 2001 From: Zephyron Date: Mon, 10 Feb 2025 19:55:16 +1000 Subject: cmake: update Qt configuration and externals URL - Simplify Qt version selection to always use 6.8.2 instead of conditional versions - Update bundled externals URL to use git.citron-emu.org/Citron - Update MSVC toolchain references from 2019 to 2022 for Qt paths This change streamlines Qt version management and updates the infrastructure to use newer MSVC toolchain paths. --- CMakeLists.txt | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index b5bf1a978..8c4e4d3c4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -422,11 +422,7 @@ endif() if (ENABLE_QT) if (NOT USE_SYSTEM_QT) - if ((MSVC_VERSION GREATER_EQUAL 1920) AND ARCHITECTURE_x86_64) - download_qt(6.7.3) - else() - download_qt(6.8.2) - endif() + download_qt(6.8.2) endif() find_package(Qt6 REQUIRED COMPONENTS Widgets Multimedia Concurrent Network) -- cgit v1.2.3