Skip to content

Commit

Permalink
Extend version number and README to indicate this Kitware feature branch
Browse files Browse the repository at this point in the history
Pending upstream integration of the features added by this branch,
extend the version number of Ninja to indicate that it has the
'dyndep' feature so that tools can detect availability.
  • Loading branch information
bradking committed Jun 21, 2017
1 parent 894da69 commit aad58dd
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
20 changes: 20 additions & 0 deletions README
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
Kitware maintains this branch of Ninja in order to provide features needed
to support Fortran builds but that have not yet been integrated upstream.
This branch may be *rebased* without notice for maintenance on top of
the upstream 'master' branch. It will be removed once upstream has
integrated the features.

Parts of this branch are under upstream consideration:

* https://github.com/ninja-build/ninja/pull/1039
* https://github.com/ninja-build/ninja/pull/1111

As each PR is accepted additional parts of this branch will be submitted
incrementally.

Binaries built from versions of this branch are available here:

* https://github.com/Kitware/ninja/releases

-----------------------------------------------------------------------------

Ninja is a small build system with a focus on speed.
https://ninja-build.org/

Expand Down
2 changes: 1 addition & 1 deletion src/version.cc
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

#include "util.h"

const char* kNinjaVersion = "1.7.2.git";
const char* kNinjaVersion = "1.7.2.git.kitware.dyndep-1";

void ParseVersion(const string& version, int* major, int* minor) {
size_t end = version.find('.');
Expand Down

0 comments on commit aad58dd

Please sign in to comment.