tldr/pages/common/meson.md

29 lines
542 B
Markdown
Raw Normal View History

2020-09-05 00:05:18 +01:00
# meson
> SCons-like build system that uses Python as a front-end language and Ninja as a building backend.
2020-09-05 00:05:18 +01:00
> More information: <https://mesonbuild.com>.
- Generate a C project with a given name and version:
2020-09-05 00:05:18 +01:00
`meson init --language={{c}} --name={{myproject}} --version={{0.1}}`
- Configure the `builddir` with default values:
2020-09-05 00:05:18 +01:00
`meson setup {{build_dir}}`
- Build the project:
`meson compile -C {{path/to/build_dir}}`
- Run all tests in the project:
`meson test`
2020-09-05 00:05:18 +01:00
- Show the help:
`meson --help`
- Display version:
2020-09-05 00:05:18 +01:00
`meson --version`