-
Notifications
You must be signed in to change notification settings - Fork 1
/
README
38 lines (24 loc) · 1.23 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# Note:
This is an `esy` compatible `package.json` version of the ninja build
system. It does *not* modify `ninja` at all, it only adds a `package.json`
file so that `ninja` can be depended on from `package.json` projects:
### How:
Add the following to your `"dependencies"` in `package.json`.
"ninja-build-system": "reasonml/ninja.git#v1.7.2-esy"
# Original `README` below:
Ninja is a small build system with a focus on speed.
https://ninja-build.org/
See the manual -- https://ninja-build.org/manual.html or
doc/manual.asciidoc included in the distribution -- for background
and more details.
Binaries for Linux, Mac, and Windows are available at
https://github.com/ninja-build/ninja/releases
Run './ninja -h' for Ninja help.
To build your own binary, on many platforms it should be sufficient to
just run `./configure.py --bootstrap`; for more details see HACKING.md.
(Also read that before making changes to Ninja, as it has advice.)
Installation is not necessary because the only required file is the
resulting ninja binary. However, to enable features like Bash
completion and Emacs and Vim editing modes, some files in misc/ must be
copied to appropriate locations.
If you're interested in making changes to Ninja, read HACKING.md first.