2024-10-27 14:40:50 +00:00
|
|
|
# Hyprland QT utils
|
|
|
|
|
|
2025-11-06 20:45:12 +00:00
|
|
|
> [!IMPORTANT]
|
|
|
|
|
> This repo has been superseded by 
|
|
|
|
|
|
2024-10-27 14:40:50 +00:00
|
|
|
This repo houses some qt/qml utilities that might be used by various hypr* apps.
|
2024-12-05 22:45:05 +01:00
|
|
|
|
|
|
|
|
## Dependencies
|
|
|
|
|
|
2025-01-08 23:03:27 +01:00
|
|
|
This depends on qt6 and qt6-qml, as well as hyprland-qt-support.
|
2025-01-13 13:20:15 +00:00
|
|
|
|
|
|
|
|
## Building
|
|
|
|
|
|
|
|
|
|
You can build it with this command:
|
|
|
|
|
```sh
|
|
|
|
|
cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release -DCMAKE_INSTALL_PREFIX:PATH=/usr -S . -B ./build
|
|
|
|
|
cmake --build ./build --config Release --target all -j`nproc 2>/dev/null || getconf NPROCESSORS_CONF`
|
|
|
|
|
```
|