From 853a6a735771c88978f4a422fee3b34f9fb95ab1 Mon Sep 17 00:00:00 2001 From: crueter Date: Mon, 28 Jul 2025 16:25:47 -0400 Subject: [PATCH] [cmake] use bundled Qt v6.7.3 for Apple Signed-off-by: crueter --- CMakeLists.txt | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ebe363c3f0..3ec1d5d825 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -120,7 +120,7 @@ option(YUZU_ENABLE_PORTABLE "Allow yuzu to enable portable mode if a user folder CMAKE_DEPENDENT_OPTION(YUZU_USE_FASTER_LD "Check if a faster linker is available" ON "NOT WIN32" OFF) -CMAKE_DEPENDENT_OPTION(USE_SYSTEM_MOLTENVK "Use the system MoltenVK lib (instead of the bundled one)" OFF "APPLE" ON) +CMAKE_DEPENDENT_OPTION(USE_SYSTEM_MOLTENVK "Use the system MoltenVK lib (instead of the bundled one)" OFF "APPLE" OFF) set(DEFAULT_ENABLE_OPENSSL ON) if (ANDROID OR WIN32 OR APPLE OR ${CMAKE_SYSTEM_NAME} STREQUAL "SunOS") @@ -495,7 +495,11 @@ add_subdirectory(externals) if (ENABLE_QT) if (YUZU_USE_BUNDLED_QT) - download_qt(6.7.3) + if (APPLE) + download_qt(6.7.3) + else() + download_qt(6.8.3) + endif() else() message(STATUS "Using system Qt") if (NOT Qt6_DIR)