1
0
Fork 0
mirror of https://github.com/hyprwm/wlroots-hyprland.git synced 2025-01-14 11:19:49 +01:00
wlroots-hyprland/.build.yml

27 lines
450 B
YAML
Raw Normal View History

2017-08-04 22:51:44 +02:00
image: archlinux
packages:
2017-08-09 00:02:32 +02:00
- meson
2017-08-04 22:51:44 +02:00
- wayland
- wayland-protocols
- mesa
- libinput
- libxkbcommon
- libcap
2017-08-09 17:06:19 +02:00
- pixman
2017-08-04 22:51:44 +02:00
- clang
sources:
- https://git.sr.ht/~sircmpwn/wlroots
tasks:
- setup: |
mkdir wlroots/build-{gcc,clang}
cd wlroots/build-gcc
2017-08-10 04:59:02 +02:00
CC=gcc meson ..
2017-08-04 22:51:44 +02:00
cd ../build-clang
2017-08-09 00:02:32 +02:00
CC=clang meson ..
2017-08-04 22:51:44 +02:00
- gcc: |
cd wlroots/build-gcc
2017-08-09 00:02:32 +02:00
ninja
2017-08-04 22:51:44 +02:00
- clang: |
cd wlroots/build-clang
2017-08-09 00:02:32 +02:00
ninja