mirror of
https://gitlab.freedesktop.org/emersion/libliftoff.git
synced 2024-11-16 19:47:55 +01:00
d98ae24328
Fixes this warning: WARNING: Running the setup command as `meson [options]` instead of `meson setup [options]` is ambiguous and deprecated.
17 lines
330 B
YAML
17 lines
330 B
YAML
image: freebsd/latest
|
|
packages:
|
|
- devel/pkgconf
|
|
- graphics/libdrm
|
|
- devel/meson
|
|
sources:
|
|
- https://gitlab.freedesktop.org/emersion/libliftoff.git
|
|
tasks:
|
|
- setup: |
|
|
cd libliftoff
|
|
meson setup build/ --fatal-meson-warnings
|
|
- build: |
|
|
cd libliftoff
|
|
ninja -C build/
|
|
- test: |
|
|
cd libliftoff
|
|
ninja -C build/ test
|