Document minimum required Meson version.
authorNikolaus Rath <Nikolaus@rath.org>
Wed, 15 Mar 2017 23:13:39 +0000 (16:13 -0700)
committerNikolaus Rath <Nikolaus@rath.org>
Wed, 15 Mar 2017 23:13:39 +0000 (16:13 -0700)
Fixes #138.

README.md
meson.build

index be2e52e96dc87a30305e31d14bde1442415478f6..00b423ea539c3fc679747265b1528e4f0da1f6e2 100644 (file)
--- a/README.md
+++ b/README.md
@@ -29,9 +29,9 @@ Installation
 
 You can download libfuse from
 https://github.com/libfuse/libfuse/releases. To build and install, we
-recommend to use [Meson](http://mesonbuild.com/) and
-[Ninja](https://ninja-build.org).  After extracting the libfuse
-tarball, create a (temporary) build directory and run Meson:
+recommend to use [Meson](http://mesonbuild.com/) (version 0.37 or
+newer) and [Ninja](https://ninja-build.org).  After extracting the
+libfuse tarball, create a (temporary) build directory and run Meson:
 
     $ md build; cd build
     $ meson ..
index a1e9b80da27b640b02de8e78a6d1731b89673de9..bcb3a104b879ac7e85882a49dadcbc7d4ec72130 100644 (file)
@@ -2,6 +2,7 @@
 # (even though this isn't actually Python code)
 
 project('libfuse3', 'c', version: '3.1.0',
+        meson_version: '>= 0.37',
         default_options: [ 'buildtype=plain' ])
 
 #