Qt is a cross-platform application development framework for desktop, embedded, and mobile.

Status

Build from Source

Qt is most popularly installed as binary from their official download page, but may also be compiled from source. Community builds recommend MSYS2 for building Qt.

Install the MSYS2 build dependencies, needed for Qt :

pacman -S mingw-w64-x86_64-headers-git

Main commands to build from source on a windows arm64 machine

git clone https://code.qt.io/qt/qt5.git qt6
cd qt6
perl init-repository
mkdir qt6-build
cd qt6-build
..\configure.bat -prefix C:\path\to\install
cmake --build .
cmake --install .

Qt official build documentation could be found athttps://doc.qt.io/qt-6/windows-building.html

Binary Availability

Refers the Qt documentation page here: https://doc.qt.io/qt-6/windows.html for the most up to date information. The page also has links to the Qt installer.