wlroots-hyprland/.build.yml

28 lines
467 B
YAML
Raw Normal View History

2017-08-04 16:51:44 -04:00
image: archlinux
packages:
2017-08-08 18:02:32 -04:00
- meson
2017-08-04 16:51:44 -04:00
- wayland
- wayland-protocols
- mesa
- libinput
- libxkbcommon
2017-11-02 00:19:51 +01:00
- xcb-util-image
2017-08-04 16:51:44 -04:00
- libcap
2017-08-09 17:06:19 +02:00
- pixman
2017-08-04 16:51:44 -04:00
- clang
sources:
2018-03-03 23:00:59 -05:00
- https://github.com/swaywm/wlroots
2017-08-04 16:51:44 -04:00
tasks:
- setup: |
mkdir wlroots/build-{gcc,clang}
cd wlroots/build-gcc
2017-08-09 22:59:02 -04:00
CC=gcc meson ..
2017-08-04 16:51:44 -04:00
cd ../build-clang
2017-08-08 18:02:32 -04:00
CC=clang meson ..
2017-08-04 16:51:44 -04:00
- gcc: |
cd wlroots/build-gcc
2017-08-08 18:02:32 -04:00
ninja
2017-08-04 16:51:44 -04:00
- clang: |
cd wlroots/build-clang
2017-08-08 18:02:32 -04:00
ninja