aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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()]