1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
## hyprtoolkit
A modern C++ Wayland-native GUI toolkit

## What Hyprtoolkit is
Hyprtoolkit is designed to be a small, simple, and modern C++ toolkit for making wayland GUI apps, with
a few goals:
- Simple C++ API for making a GUI app
- Smooth animations
- Easy usage
- Simple system theming
## Building
Standard CMake build:
```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`
```
### What Hyprtoolkit is not
Hyprtoolkit is not:
- cross-platform
- packed with crazy features
|