mirror of https://github.com/CrimsonTome/tldr.git
321 B
321 B
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
anduninstall
):
ninja -t targets
- Show help:
ninja -h