mirror of
https://github.com/miurahr/aqtinstall.git
synced 2025-12-17 20:54:38 +03:00
Use Qt6 version of example project
The directory structure of the Qt libraries has changed enough that the Qt5 example project we are using for WASM cannot be built using Qt6. This change adds an example project appropriate for use with Qt6, and adds build jobs for Mac and Linux that build it too, to prove that we can build the same code on all 3 platforms.
This commit is contained in:
@@ -275,9 +275,17 @@ mac_build_jobs.extend(
|
||||
linux_build_jobs.append(
|
||||
BuildJob("install-qt", "5.14.2", "linux", "desktop", "wasm_32", "wasm_32")
|
||||
)
|
||||
linux_build_jobs.append(
|
||||
BuildJob("install-qt", "6.4.0", "linux", "desktop", "wasm_32", "wasm_32",
|
||||
is_autodesktop=True, emsdk_version="sdk-3.1.14-64bit", autodesk_arch_folder="gcc_64")
|
||||
)
|
||||
mac_build_jobs.append(
|
||||
BuildJob("install-qt", "5.14.2", "mac", "desktop", "wasm_32", "wasm_32")
|
||||
)
|
||||
mac_build_jobs.append(
|
||||
BuildJob("install-qt", "6.4.0", "mac", "desktop", "wasm_32", "wasm_32",
|
||||
is_autodesktop=True, emsdk_version="sdk-3.1.14-64bit", autodesk_arch_folder="clang_64")
|
||||
)
|
||||
windows_build_jobs.append(
|
||||
BuildJob("install-qt", "5.14.2", "windows", "desktop", "wasm_32", "wasm_32")
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user