blob: 52cce5723874303010f6f19881327b60dea4bc1a (
plain)
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
29
|
image: archlinux
packages:
- clang
- freerdp
- ffmpeg
- libcap
- libinput
- libxkbcommon
- mesa
- meson
- pixman
- wayland
- wayland-protocols
- xcb-util-errors
- xcb-util-image
- xcb-util-wm
sources:
- https://github.com/swaywm/wlroots
tasks:
- setup: |
cd wlroots
CC=gcc meson build-gcc -Dauto_features=enabled
CC=clang meson build-clang -Dauto_features=enabled
- gcc: |
cd wlroots/build-gcc
ninja
- clang: |
cd wlroots/build-clang
ninja
|