diff --git a/CMakeLists.txt b/CMakeLists.txt index 8c4e4d3c4..b5bf1a978 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -422,7 +422,11 @@ endif() if (ENABLE_QT) if (NOT USE_SYSTEM_QT) - download_qt(6.8.2) + 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)