The Meson Build System

Andrei Alexeyev f8ae9fc44f mparser: fix precedence of arithmetic operators il y a 4 ans
.github 32b4bfaa74 Fix failing rust CI il y a 4 ans
ci aee02c9bec ci: Added boost_python to fedora il y a 4 ans
cross 9e5c881b06 Add property to disable compiler sanity checks during cross compilation. il y a 4 ans
data a076e9852b syntax-highlighting/vim: Add `in` as an operator il y a 4 ans
docs 4d06f93021 docs: Described library command in Build targets section [skip ci] il y a 4 ans
graphics 011c77ee22 New logo and license text. Closes #4921. [skip ci] il y a 5 ans
man 253fbc4470 Bump version number for rc1. il y a 4 ans
manual tests d9b8dce975 wrap: check whitelist subdomain il y a 4 ans
mesonbuild f8ae9fc44f mparser: fix precedence of arithmetic operators il y a 4 ans
msi 585ccfc789 Clean MSI generator Try 2 [skip ci] il y a 4 ans
test cases f8ae9fc44f mparser: fix precedence of arithmetic operators il y a 4 ans
tools ee94cb6c15 cmake2meson fix if nesting (#6676) il y a 4 ans
.coveragerc 8a9479f8ea Enable code coverage on Travis. il y a 7 ans
.editorconfig 07a53eeebb Add editorconfig file il y a 8 ans
.flake8 6727e5f5ad add missing commas il y a 5 ans
.gitattributes d505a68e34 Fix crlf line endings il y a 5 ans
.gitignore 1ea3182f82 add pytest_cache to gitignore il y a 5 ans
.mailmap 8c24fc7761 mailmap: add couple of aliases il y a 7 ans
.pylintrc fa38aa378e add pylint config file. update Sider CI name il y a 5 ans
.travis.yml 66410202e9 travis: install ldc on macOS il y a 4 ans
CODEOWNERS 8b98585e6c Add mesonbuild/ast to CODEOWNERS [skip ci] il y a 4 ans
COPYING a428c953ff Start of project. il y a 11 ans
MANIFEST.in 3a04d325aa Fix packaging. [skip ci] il y a 5 ans
README.md a0ce13d4e9 add setup keyword in example commands [skip ci] il y a 4 ans
__main__.py e4a83e47d4 Fix __main__.py for zipapp to work il y a 6 ans
azure-pipelines.yml 0fa70325ed Revert "azure: Workaround MSYS2 PCH test failures" il y a 4 ans
contributing.md 7561926a70 Readme fixes. [skip ci] il y a 5 ans
ghwt.py c89dca8c70 Add ability to specify project branch to install il y a 4 ans
lgtm.yml 380b9071be ci: lgtm: configure for Python 3 il y a 4 ans
meson.py 1b1c66d7bc meson.py: sys.path requires str, not pathlib.Path il y a 6 ans
mypy.ini 4d6ac91f95 mypy: Ignore missing imports il y a 4 ans
pyproject.toml d218d52367 Ensure setuptools via PEP508/518 pyproject.toml il y a 4 ans
run_cross_test.py d4c7ff173a Make run_cross_test.py just a wrapper around run_project_tests.py il y a 4 ans
run_meson_command_tests.py ec0998e694 tests: Ignore all files in 'data' directories il y a 5 ans
run_project_tests.py 84e216fd64 Merge pull request #6636 from jon-turney/machine-detection-problems il y a 4 ans
run_tests.py be486a2ec8 ninjabackend: List PDBs in output list for targets il y a 4 ans
run_unittests.py 7924e5f9c2 Revert "Naturally use env vars a bit more to match Autoconf" il y a 4 ans
setup.cfg d0dd21858c pytest: Fix test warnings il y a 4 ans
setup.py 113ec96626 cmake: Fix relative paths for add_custom_{command,target} il y a 4 ans
sider.yml fa38aa378e add pylint config file. update Sider CI name il y a 5 ans
skip_ci.py 7bdb39668b Add an azure-pipelines.yml il y a 6 ans

README.md

Meson® is a project to create the best possible next-generation build system.

Status

PyPI Travis Build Status Codecov Total Alerts

Dependencies

  • Python (version 3.5 or newer)
  • Ninja (version 1.5 or newer)

Installing from source

Meson is available on PyPi, so it can be installed with pip3 install meson. The exact command to type to install with pip can vary between systems, be sure to use the Python 3 version of pip.

If you wish you can install it locally with the standard Python command:

python3 -m pip install meson

For builds using Ninja, Ninja can be downloaded directly from Ninja GitHub release page or via PyPi

python3 -m pip install ninja

More on Installing Meson build can be found at the getting meson page.

Running

Meson requires that you have a source directory and a build directory and that these two are different. In your source root must exist a file called meson.build. To generate the build system run this command:

meson setup <source directory> <build directory>

Depending on how you obtained Meson the command might also be called meson.py instead of plain meson. In the rest of this document we are going to use the latter form.

You can omit either of the two directories, and Meson will substitute the current directory and autodetect what you mean. This allows you to do things like this:

cd <source root>
meson setup builddir

To compile, cd into your build directory and type ninja. To run unit tests, type ninja test.

More on running Meson build system commands can be found at the running meson page or by typing meson --help.

Contributing

We love code contributions. See the contribution page on the website for details.

IRC

The irc channel for Meson is #mesonbuild over at Freenode.

You can use FreeNode's official webchat to connect to this channel.

Further info

More information about the Meson build system can be found at the project's home page.

Meson is a registered trademark of Jussi Pakkanen.