r3drock 5 anni fa
parent
commit
7a0336b379
1 ha cambiato i file con 20 aggiunte e 0 eliminazioni
  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`