diff options
| author | Zephyron <zephyron@citron-emu.org> | 2025-02-01 22:00:12 +1000 |
|---|---|---|
| committer | Mike Lothian <mike@fireburn.co.uk> | 2025-05-11 14:54:45 +0100 |
| commit | 735c69f9e2ab5b60f2cbc01c18ddf88070fcbdc1 (patch) | |
| tree | 695f317ac7a0ee1cb7beeca23c2c3092697fa336 /CMakeModules | |
| parent | 66703870b5333a85deb4d34e30f3c45a657ec788 (diff) | |
cmake: Update Qt download configuration and aqtinstall version
- Switch from specific Qt modules to downloading all modules using '-m all'
- Update aqtinstall version from v3.1.18 to v3.2.0
This change allows for a more complete Qt installation and uses a newer
version of the aqtinstall tool.
Diffstat (limited to 'CMakeModules')
| -rw-r--r-- | CMakeModules/DownloadExternals.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeModules/DownloadExternals.cmake b/CMakeModules/DownloadExternals.cmake index 3667188b2..edcbf164a 100644 --- a/CMakeModules/DownloadExternals.cmake +++ b/CMakeModules/DownloadExternals.cmake @@ -135,12 +135,12 @@ function(download_qt_configuration prefix_out target host type arch arch_path ba else() set(prefix "${base_path}/${target}/${arch_path}") set(install_args ${install_args} install-qt --outputdir ${base_path} ${host} ${type} ${target} ${arch} - -m qtmultimedia --archives qttranslations qttools qtsvg qtbase) + -m all) endif() if (NOT EXISTS "${prefix}") message(STATUS "Downloading Qt binaries for ${target}:${host}:${type}:${arch}:${arch_path}") - set(AQT_PREBUILD_BASE_URL "https://github.com/miurahr/aqtinstall/releases/download/v3.1.18") + set(AQT_PREBUILD_BASE_URL "https://github.com/miurahr/aqtinstall/releases/download/v3.2.0") if (WIN32) set(aqt_path "${base_path}/aqt.exe") if (NOT EXISTS "${aqt_path}") |
