Update cheatsheets

This commit is contained in:
ivuorinen
2025-05-05 00:21:02 +00:00
parent 968390f769
commit e452860d9b
156 changed files with 258 additions and 258 deletions

View File

@@ -6,11 +6,11 @@ source: https://github.com/tldr-pages/tldr.git
# meson
> SCons-like build system that uses Python as a front-end language and Ninja as a building backend.
> More information: <https://mesonbuild.com>.
> More information: <https://mesonbuild.com/Commands.html>.
- Generate a C project with a given name and version:
`meson init --language={{c}} --name={{myproject}} --version={{0.1}}`
`meson init {{[-l|--language]}} c {{[-n|--name]}} {{myproject}} --version {{0.1}}`
- Configure the `builddir` with default values:
@@ -26,8 +26,8 @@ source: https://github.com/tldr-pages/tldr.git
- Show the help:
`meson --help`
`meson {{[-h|--help]}}`
- Display version:
`meson --version`
`meson {{[-v|--version]}}`