meson: Change project name to xwayland

(cherry picked from commit 001f0c8938)

Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1483>
This commit is contained in:
Michel Dänzer 2020-10-23 12:25:16 +02:00 committed by Olivier Fourdan
parent 3d5eb2df23
commit 751af1243e
2 changed files with 6 additions and 6 deletions

View file

@ -104,15 +104,15 @@ meson-dist:
when: always
paths:
- $MESON_BUILDDIR/meson-logs/
- $MESON_BUILDDIR/xserver-*/$MESON_BUILDDIR/meson-logs/
- $MESON_BUILDDIR/xwayland-*/$MESON_BUILDDIR/meson-logs/
script:
- .gitlab-ci/meson-build.sh --run-dist
- mkdir xserver-tarball
- tar xf $MESON_BUILDDIR/meson-dist/xserver-*.tar.xz -C xserver-tarball --strip-components=1
- .gitlab-ci/meson-build.sh -C xserver-tarball --skip-test --skip-dist --run-install
- mkdir xwayland-tarball
- tar xf $MESON_BUILDDIR/meson-dist/xwayland-*.tar.xz -C xwayland-tarball --strip-components=1
- .gitlab-ci/meson-build.sh -C xwayland-tarball --skip-test --skip-dist --run-install
variables:
MESON_DIST_ARGS: --no-tests
DESTDIR: xserver-tarball/install/
DESTDIR: xwayland-tarball/install/
#
# Verify that commit messages are as expected

View file

@ -1,4 +1,4 @@
project('xserver', 'c',
project('xwayland', 'c',
default_options: [
'buildtype=debugoptimized',
'c_std=gnu99',