diff options
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 14 |
1 files changed, 3 insertions, 11 deletions
@@ -3,7 +3,7 @@ This workspace contains two independent interfaces for `alt-rootfs-installer`: - `crates/flasher-gtk` — GTK 4/libadwaita -- `crates/flasher-qt` — Qt 5/Qt Quick Controls 2 +- `crates/flasher-qt` — native Qt 5 Widgets Both are interface previews. They inspect supported boards and removable drives, but do not write to any device. @@ -12,18 +12,10 @@ Both are interface previews. They inspect supported boards and removable drives, On ALT Linux: ```sh -sudo apt-get install gcc-c++ libgtk4-devel libadwaita-devel \ - qt5-base-devel qt5-declarative-devel qt5-quickcontrols2-devel \ - qt5-quickcontrols2 +sudo apt-get install gcc-c++ libgtk4-devel libadwaita-devel qt5-base-devel ``` -The Qt bindings discover Qt through `qmake`. If several Qt versions are installed, select Qt 5 explicitly: - -```sh -export QMAKE=/usr/lib64/qt5/bin/qmake -``` - -(The exact `qmake` path can be found with `rpm -ql qt5-base-devel | grep '/qmake$'`.) +The Qt crate discovers Qt 5 through `pkg-config` and uses the platform's native Qt widget style. It does not require QML or Qt Quick. ## Build |