mirror of
https://github.com/yshui/picom.git
synced 2024-11-11 13:51:02 -05:00
709f0168d9
Building on OpenBSD fails currently. Signed-off-by: Yuxuan Shui <yshuiv7@gmail.com>
23 lines
404 B
YAML
23 lines
404 B
YAML
image: openbsd/latest
|
|
packages:
|
|
- libev
|
|
- xcb
|
|
- meson
|
|
- pkgconf
|
|
- cmake
|
|
- uthash
|
|
- libconfig
|
|
- dbus
|
|
- pcre2
|
|
sources:
|
|
- https://github.com/yshui/picom
|
|
tasks:
|
|
- setup: |
|
|
cd picom
|
|
CPPFLAGS="-I/usr/local/include" LDFLAGS="-L/usr/local/lib" meson -Dunittest=true build
|
|
- build: |
|
|
cd picom
|
|
ninja -C build
|
|
- unittest: |
|
|
cd picom
|
|
ninja -C build test
|