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:
parent
0a1b47ed6f
commit
7a0336b379
1 changed files with 20 additions and 0 deletions
20
pages/common/ninja.md
Normal file
20
pages/common/ninja.md
Normal 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`
|
Loading…
Add table
Reference in a new issue