From e285e82781a7276fb5c74407bd75e0d6e9080ea1 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 50db658032..1e48af24d6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -122,7 +122,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") @@ -499,7 +499,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)