aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2013-10-18 18:16:50 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2013-10-18 18:16:50 +0300
commitcca448254d08cb72de05807a58e1c8a4d60618b7 (patch)
tree311e6a59386f5b77852fff1da9860b9ca48fc05a
parente5bbc0f27cb4a5265e788def25f21bb1c5338ce6 (diff)
downloadmeson-cca448254d08cb72de05807a58e1c8a4d60618b7.zip
meson-cca448254d08cb72de05807a58e1c8a4d60618b7.tar.gz
meson-cca448254d08cb72de05807a58e1c8a4d60618b7.tar.bz2
Bump required Ninja version to celebrate the release of Ubuntu Saucy.
-rw-r--r--backends.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/backends.py b/backends.py
index 37f74c9..2ea34a1 100644
--- a/backends.py
+++ b/backends.py
@@ -317,6 +317,7 @@ class NinjaBackend(Backend):
outfile.write('# This is the build file for project "%s"\n' % self.build.get_project())
outfile.write('# It is autogenerated by the Meson build system.\n')
outfile.write('# Do not edit by hand.\n\n')
+ outfile.write('ninja_required_version = 1.3.4\n\n')
self.generate_rules(outfile)
outfile.write('# Build rules for targets\n\n')
[self.generate_target(t, outfile) for t in self.build.get_targets().values()]