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.
This commit is contained in:
Zephyron 2025-02-10 19:55:16 +10:00
parent 13ada2d705
commit 33d54e595f
2 changed files with 6 additions and 10 deletions

View file

@ -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)