blob: 8664d6170adc22272d882f545bd02b9a0a08fe6a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Getting meson
## Downloading Meson
Meson releases can be downloaded from the [GitHub release page].
Meson is also available in the [Python Package Index] and can be
installed with `pip3 install meson`.
The newest development code can be obtained directly from [Git]
## Dependencies
Meson is implemented in Python 3. If your operating system provides a
package manager, you should install it with that. For platforms that
don't have a package manager, you need to download it from [Python's
home page].
Depending on your platform and backend you wish to use, you might need
the [Ninja executable]. Again, use your distro-provided version if
possible. Otherwise download it from Ninja project's web site.
[GitHub release page]: https://github.com/mesonbuild/meson/releases
[Python Package Index]: https://pypi.python.org/pypi/meson/
[Git]: https://github.com/mesonbuild/meson
[Python's home page]: https://www.python.org/downloads/
[Ninja executable]: https://ninja-build.org/
|