add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

28
pages.zh/common/meson.md Normal file
View File

@@ -0,0 +1,28 @@
# meson
> 类似SCons的构建系统使用Python作为前端语言Ninja作为构建后端。
> 更多信息请访问:<https://mesonbuild.com>。
- 生成一个具有给定名称和版本的C项目
`meson init --language={{c}} --name={{myproject}} --version={{0.1}}`
- 使用默认值配置 `builddir`
`meson setup {{build_dir}}`
- 构建项目:
`meson compile -C {{path/to/build_dir}}`
- 运行项目中的所有测试:
`meson test`
- 显示帮助信息:
`meson --help`
- 显示版本:
`meson --version`