1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-05 15:26:04 +02:00

ninja: add page (#3479)

This commit is contained in:
r3drock 2019-11-05 22:48:09 +01:00 committed by Starbeamrainbowlabs
parent 0a1b47ed6f
commit 7a0336b379

20
pages/common/ninja.md Normal file
View file

@ -0,0 +1,20 @@
# ninja
> A Build system designed to be fast.
> More information: <https://ninja-build.org/manual.html>.
- Build in the current directory:
`ninja`
- Build a program in a given directory:
`ninja -C {{path/to/directory}}`
- Show targets (e.g. `install` and `uninstall`):
`ninja -t targets`
- Show help:
`ninja -h`