Browse Source

ninja: add page (#3479)

r3drock 5 years ago
parent
commit
7a0336b379
1 changed files with 20 additions and 0 deletions
  1. 20 0
      pages/common/ninja.md

+ 20 - 0
pages/common/ninja.md

@@ -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`