Skip to content

Commit d4ba728

Browse files
committed
README.md, CI: meson -> meson setup
1 parent fdb42df commit d4ba728

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

.github/workflows/meson-clang-10.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
sudo pip3 install "meson>=0.55.0"
2121
export CC=clang-10
2222
export CXX=clang++-10
23-
meson -Dwarnings=fatal -Dwarning_level=3 -Dwerror=true _build
23+
meson setup -Dwarnings=fatal -Dwarning_level=3 -Dwerror=true _build
2424
cd _build
2525
meson compile
2626
- name: Test

.github/workflows/meson-gcc-10.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
sudo pip3 install "meson>=0.55.0"
2121
export CC=gcc-10
2222
export CXX=g++-10
23-
meson -Dwarnings=fatal -Dwarning_level=3 -Dwerror=true _build
23+
meson setup -Dwarnings=fatal -Dwarning_level=3 -Dwerror=true _build
2424
cd _build
2525
meson compile
2626
- name: Test

README.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@ have both libxml2 and pkg-config installed.
66
To get the latest version of libxml++, see the
77
[libxml++ web site](https://libxmlplusplus.github.io/libxmlplusplus/)
88

9-
To contact the developers, send e-mail to the
10-
[libxml++ mailing list](https://mail.gnome.org/mailman/listinfo/libxmlplusplus-list)
11-
129
See the examples directory for example code.
1310

1411
Use pkg-config to discover the necessary include and linker arguments. For instance,
@@ -48,7 +45,7 @@ of untracked/.
4845
Don't call the builddir 'build'. There is a directory called 'build' with
4946
files used by Autotools.
5047
```
51-
$ meson --prefix /some_directory --libdir lib your_builddir .
48+
$ meson setup --prefix /some_directory --libdir lib your_builddir .
5249
$ cd your_builddir
5350
```
5451
If the tarball was made with Autotools, you must enable maintainer-mode:
@@ -102,7 +99,7 @@ Maintainer-mode is enabled by default when you build from a git clone.
10299
Don't call the builddir 'build'. There is a directory called 'build' with
103100
files used by Autotools.
104101
```
105-
$ meson --prefix /some_directory --libdir lib your_builddir .
102+
$ meson setup --prefix /some_directory --libdir lib your_builddir .
106103
$ cd your_builddir
107104
$ ninja
108105
$ ninja install

0 commit comments

Comments
 (0)