mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 20:05:58 +01:00
26 lines
450 B
YAML
26 lines
450 B
YAML
image: archlinux
|
|
packages:
|
|
- meson
|
|
- wayland
|
|
- wayland-protocols
|
|
- mesa
|
|
- libinput
|
|
- libxkbcommon
|
|
- libcap
|
|
- pixman
|
|
- clang
|
|
sources:
|
|
- https://git.sr.ht/~sircmpwn/wlroots
|
|
tasks:
|
|
- setup: |
|
|
mkdir wlroots/build-{gcc,clang}
|
|
cd wlroots/build-gcc
|
|
CC=gcc meson ..
|
|
cd ../build-clang
|
|
CC=clang meson ..
|
|
- gcc: |
|
|
cd wlroots/build-gcc
|
|
ninja
|
|
- clang: |
|
|
cd wlroots/build-clang
|
|
ninja
|