28 lines
267 B
Markdown
28 lines
267 B
Markdown
# Tutorial
|
|
|
|
- https://wayland-book.com/
|
|
|
|
## Compiling
|
|
|
|
Server
|
|
```bash
|
|
cc -o server server.c -lwayland-server
|
|
```
|
|
|
|
Client
|
|
```bash
|
|
cc -o client client.c -lwayland-client
|
|
```
|
|
|
|
## Run
|
|
|
|
Server
|
|
```bash
|
|
./server &
|
|
```
|
|
|
|
Client
|
|
|
|
```bash
|
|
WAYLAND_DISPLAY=wayland-1 ./client
|
|
```
|