wayland-tutorial/README.md
2024-06-06 22:04:30 +02:00

28 lines
334 B
Markdown

# Tutorial
- https://wayland-book.com/
## Compiling
```bash
mkdir -p build # Create build directory
```
```bash
cmake -Bbuild -G Ninja # Configure build folder with ninja builder
```
```bash
ninja -C build
```
## Run
```bash
./build/wayland_test_server &
```
```bash
WAYLAND_DISPLAY=wayland-1 ./build/wayland_test_client
```