1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 09:42:07 +02:00
tldr/pages/common/ninja.md
Vitor Henrique 61405c6e0e
pages*: fix small typos (#11850)
* pages*: fix small typos

* pages/*: make help and version commands consistent

* pages/*: follow "path/to/file" pattern

* nop: generic display help wording
2023-12-27 12:11:30 +05:30

24 lines
417 B
Markdown

# ninja
> A Build system designed to be fast.
> More information: <https://ninja-build.org/manual.html>.
- Build in the current directory:
`ninja`
- Build in the current directory, executing 4 jobs at a time in parallel:
`ninja -j {{4}}`
- Build a program in a given directory:
`ninja -C {{path/to/directory}}`
- Show targets (e.g. `install` and `uninstall`):
`ninja -t targets`
- Display help:
`ninja -h`