File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 19
19
# Install it with pip3 instead of apt.
20
20
sudo pip3 install "meson>=0.55.0"
21
21
export CXX=clang++-10
22
- meson -Dwarnings=fatal -Dwarning_level=3 -Dwerror=true _build
22
+ meson setup -Dwarnings=fatal -Dwarning_level=3 -Dwerror=true _build
23
23
cd _build
24
24
meson compile
25
25
- name : Test
Original file line number Diff line number Diff line change 19
19
# Install it with pip3 instead of apt.
20
20
sudo pip3 install "meson>=0.55.0"
21
21
export CXX=g++-10
22
- meson -Dwarnings=fatal -Dwarning_level=3 -Dwerror=true _build
22
+ meson setup -Dwarnings=fatal -Dwarning_level=3 -Dwerror=true _build
23
23
cd _build
24
24
meson compile
25
25
- name : Test
Original file line number Diff line number Diff line change 38
38
export ENV DEBIAN_FRONTEND=noninteractive
39
39
sudo apt update
40
40
sudo apt install libxml2-utils docbook5-xml docbook-xsl mm-common g++ meson ninja-build python3-setuptools python3-pip --yes
41
- meson -Dbuild-documentation=true -Dbuild-examples=false -Dbuild-tests=false _build
41
+ meson setup -Dbuild-documentation=true -Dbuild-examples=false -Dbuild-tests=false _build
42
42
meson compile -C _build
43
43
- name : Collect Documentation
44
44
# Collect all documentation to be published.
Original file line number Diff line number Diff line change @@ -54,10 +54,10 @@ For instance:
54
54
``` sh
55
55
# If the tarball was made with Autotools, and you want to rebuild the reference
56
56
# documentation, you must enable maintainer-mode:
57
- $ meson --prefix=/some_directory --libdir=lib -Dmaintainer-mode=true your_builddir .
57
+ $ meson setup --prefix=/some_directory --libdir=lib -Dmaintainer-mode=true your_builddir .
58
58
59
59
# If the tarball was made with Meson, or you don't want to rebuild the docs:
60
- $ meson --prefix=/some_directory --libdir=lib your_builddir .
60
+ $ meson setup --prefix=/some_directory --libdir=lib your_builddir .
61
61
62
62
# then:
63
63
$ cd your_builddir
@@ -105,7 +105,7 @@ Don't call the builddir 'build'. There is a directory called 'build' with
105
105
files used by Autotools.
106
106
107
107
``` sh
108
- $ meson --prefix=/some_directory --libdir=lib your_builddir .
108
+ $ meson setup --prefix=/some_directory --libdir=lib your_builddir .
109
109
$ cd your_builddir
110
110
$ ninja
111
111
$ ninja install
You can’t perform that action at this time.
0 commit comments