|
|
@ -133,7 +133,23 @@ 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} -m qt3d qt5compat qtactiveqt qtcharts qtconnectivity qtdatavis3d qtgraphs qtgrpc qthttpserver qtimageformats qtlanguageserver qtlocation qtlottie qtmultimedia qtnetworkauth qtpdf qtpositioning qtquick3d qtquick3dphysics qtquickeffectmaker qtquicktimeline qtremoteobjects qtscxml qtsensors qtserialbus qtserialport qtshadertools qtspeech qtvirtualkeyboard qtwebchannel qtwebengine qtwebsockets qtwebview) |
|
|
|
|
|
|
|
|
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() |
|
|
|
|
|
|
|
|
|
|
|
if (YUZU_USE_QT_MULTIMEDIA) |
|
|
|
|
|
set(install_args ${install_args} qtmultimedia) |
|
|
|
|
|
endif() |
|
|
|
|
|
|
|
|
|
|
|
if (YUZU_USE_QT_WEB_ENGINE) |
|
|
|
|
|
set(install_args ${install_args} qtpositioning qtwebchannel qtwebengine) |
|
|
|
|
|
endif() |
|
|
|
|
|
|
|
|
|
|
|
if (NOT "${YUZU_QT_MIRROR}" STREQUAL "") |
|
|
|
|
|
set(install_args ${install_args} -b ${YUZU_QT_MIRROR}) |
|
|
|
|
|
endif() |
|
|
endif() |
|
|
endif() |
|
|
|
|
|
|
|
|
if (NOT EXISTS "${prefix}") |
|
|
if (NOT EXISTS "${prefix}") |
|
|
|