Switch .build.yml to meson

This commit is contained in:
Drew DeVault 2017-08-08 18:02:32 -04:00
parent ba87585bbe
commit 913829e381
1 changed files with 5 additions and 5 deletions

View File

@ -1,6 +1,6 @@
image: archlinux
packages:
- cmake
- meson
- wayland
- wayland-protocols
- mesa
@ -14,12 +14,12 @@ tasks:
- setup: |
mkdir wlroots/build-{gcc,clang}
cd wlroots/build-gcc
cmake ..
meson ..
cd ../build-clang
CC=clang cmake ..
CC=clang meson ..
- gcc: |
cd wlroots/build-gcc
make
ninja
- clang: |
cd wlroots/build-clang
make
ninja