Browse Source
require 5compat and fix description
Signed-off-by: crueter <crueter@eden-emu.dev>
pull/71/head
crueter
8 months ago
No known key found for this signature in database
GPG Key ID: 425ACD2D4830EBC6
2 changed files with
2 additions and
6 deletions
-
CMakeLists.txt
-
CMakeModules/DownloadExternals.cmake
|
|
@ -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) |
|
|
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) |
|
|
option(ENABLE_CUBEB "Enables the cubeb audio backend" ON) |
|
|
|
|
|
|
|
|
|
|
|
@ -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}) |
|
|
set(install_args ${install_args} install-tool --outputdir ${base_path} ${host} desktop ${target}) |
|
|
else() |
|
|
else() |
|
|
set(prefix "${base_path}/${target}/${arch_path}") |
|
|
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) |
|
|
if (YUZU_USE_QT_MULTIMEDIA) |
|
|
set(install_args ${install_args} qtmultimedia) |
|
|
set(install_args ${install_args} qtmultimedia) |
|
|
|