File tree Expand file tree Collapse file tree 3 files changed +4
-7
lines changed Expand file tree Collapse file tree 3 files changed +4
-7
lines changed Original file line number Diff line number Diff line change 20
20
sudo pip3 install "meson>=0.55.0"
21
21
export CC=clang-10
22
22
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
24
24
cd _build
25
25
meson compile
26
26
- name : Test
Original file line number Diff line number Diff line change 20
20
sudo pip3 install "meson>=0.55.0"
21
21
export CC=gcc-10
22
22
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
24
24
cd _build
25
25
meson compile
26
26
- name : Test
Original file line number Diff line number Diff line change @@ -6,9 +6,6 @@ have both libxml2 and pkg-config installed.
6
6
To get the latest version of libxml++, see the
7
7
[ libxml++ web site] ( https://libxmlplusplus.github.io/libxmlplusplus/ )
8
8
9
- To contact the developers, send e-mail to the
10
- [ libxml++ mailing list] ( https://mail.gnome.org/mailman/listinfo/libxmlplusplus-list )
11
-
12
9
See the examples directory for example code.
13
10
14
11
Use pkg-config to discover the necessary include and linker arguments. For instance,
@@ -48,7 +45,7 @@ of untracked/.
48
45
Don't call the builddir 'build'. There is a directory called 'build' with
49
46
files used by Autotools.
50
47
```
51
- $ meson --prefix /some_directory --libdir lib your_builddir .
48
+ $ meson setup --prefix /some_directory --libdir lib your_builddir .
52
49
$ cd your_builddir
53
50
```
54
51
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.
102
99
Don't call the builddir 'build'. There is a directory called 'build' with
103
100
files used by Autotools.
104
101
```
105
- $ meson --prefix /some_directory --libdir lib your_builddir .
102
+ $ meson setup --prefix /some_directory --libdir lib your_builddir .
106
103
$ cd your_builddir
107
104
$ ninja
108
105
$ ninja install
You can’t perform that action at this time.
0 commit comments