a small build system with a focus on speed
Go to file
2019-12-23 14:11:09 +01:00
.github/workflows Have Github Actions also run tests (#1697) 2019-12-02 09:56:55 +01:00
doc Merge pull request #1016 from moroten/docs-empty-rule-uptodate 2019-07-09 14:43:16 +02:00
misc Ignore nonexistent .ninja_log/.ninja_deps for restat and recompact 2019-12-23 14:11:09 +01:00
src Ignore nonexistent .ninja_log/.ninja_deps for restat and recompact 2019-12-23 14:11:09 +01:00
.clang-format Add a .clang-format file. 2014-04-15 22:08:21 -07:00
.editorconfig Add .editorconfig 2019-12-22 14:12:43 +01:00
.gitignore Remove some outdated lines from .gitignore 2019-12-20 14:58:19 +01:00
.travis.yml Travis CI: Remove broken Xcode config 2019-10-28 09:42:54 +01:00
appveyor.yml Fix MinGW bootstrap build by applying the fix in appveyor.yml permanently. 2019-08-26 18:49:47 +02:00
bootstrap.py drop bootstrap.py 2014-11-18 08:15:37 -08:00
CMakeLists.txt Enable Link Time Optimization for Release builds (#1701) 2019-12-03 22:46:56 +01:00
configure.py Fix warnings on mingw build 2019-11-23 17:47:44 +08:00
COPYING Revert 78f893bdbb 2017-05-15 18:41:22 -04:00
HACKING.md Remove outdated part about Chrome download, fix #1338 2018-12-20 12:58:09 +01:00
README prefer https in readme 2015-11-19 12:41:32 -08:00
RELEASING update RELEASING 2017-09-19 10:30:35 +09:00

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.