mirror of
https://git.citron-emu.org/Citron/Citron.git
synced 2025-03-15 03:14:50 +00:00
cmake: Use Qt 6.7.3 for MSVC builds
Forces Qt 6.7.3 for MSVC builds while keeping 6.8.2 for other platforms. This fixes Windows compilation issues with newer Qt versions.
This commit is contained in:
parent
8bf4660bac
commit
13ada2d705
1 changed files with 5 additions and 1 deletions
|
@ -422,8 +422,12 @@ 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()
|
||||
endif()
|
||||
|
||||
find_package(Qt6 REQUIRED COMPONENTS Widgets Multimedia Concurrent Network)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue