From 0d07609d6493d4693f4bbf281be3de065064e6fa Mon Sep 17 00:00:00 2001 From: crueter Date: Wed, 16 Jul 2025 01:33:52 -0400 Subject: [PATCH] require 5compat and fix description Signed-off-by: crueter --- CMakeLists.txt | 2 +- CMakeModules/DownloadExternals.cmake | 6 +----- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d7bc109ed2..32d446bfa3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -79,7 +79,7 @@ option(YUZU_USE_QT_MULTIMEDIA "Use QtMultimedia for Camera" OFF) option(YUZU_USE_QT_WEB_ENGINE "Use QtWebEngine for web applet implementation" OFF) -CMAKE_DEPENDENT_OPTION(YUZU_QT_MIRROR "What mirror to use for when downloading bundled Qt" "" "YUZU_USE_BUNDLED_QT" "") +CMAKE_DEPENDENT_OPTION(YUZU_QT_MIRROR "What mirror to use for downloading the bundled Qt" "" "YUZU_USE_BUNDLED_QT" "") option(ENABLE_CUBEB "Enables the cubeb audio backend" ON) diff --git a/CMakeModules/DownloadExternals.cmake b/CMakeModules/DownloadExternals.cmake index 6ab7cd82f6..a2bae8d3eb 100644 --- a/CMakeModules/DownloadExternals.cmake +++ b/CMakeModules/DownloadExternals.cmake @@ -133,11 +133,7 @@ function(download_qt_configuration prefix_out target host type arch arch_path ba set(install_args ${install_args} install-tool --outputdir ${base_path} ${host} desktop ${target}) else() set(prefix "${base_path}/${target}/${arch_path}") - set(install_args ${install_args} install-qt --outputdir ${base_path} ${host} ${type} ${target} ${arch}) - - if (YUZU_USE_QT_MULTIMEDIA OR YUZU_USE_QT_WEB_ENGINE) - set(install_args ${install_args} -m) - endif() + set(install_args ${install_args} install-qt --outputdir ${base_path} ${host} ${type} ${target} ${arch} -m qt5compat) if (YUZU_USE_QT_MULTIMEDIA) set(install_args ${install_args} qtmultimedia)