Linux
Command
Library
Commands
Basics
Tips
ninja
A Build system designed to be fast.
TLDR
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
COLLAPSE ALL
Copied to clipboard