mirror of
https://github.com/X11Libre/xserver.git
synced 2026-03-24 12:25:07 +00:00
Bringing back Cygwin support! This will add Cygwin builds on windows-latest in our CI. Signed-off-by: b-aaz <b-aazbsd@proton.me>
10 lines
289 B
Bash
Executable File
10 lines
289 B
Bash
Executable File
#!/bin/sh
|
|
set -x
|
|
ccache -s
|
|
meson setup --prefix=/usr -Dxv=false -Dxf86bigfont=true -Dxephyr=true -Dxnest=true -Dxvfb=true -Dxwin=true -Dxorg=true -Dpciaccess=false -Dint10=false -Dglamor=false build
|
|
meson configure build
|
|
ninja -C build
|
|
ccache -s
|
|
ninja -C build test
|
|
ninja -C build install
|