summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CMakeLists.txt6
1 files changed, 5 insertions, 1 deletions
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)