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