aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Nikolaus Rath <Nikolaus@rath.org>2017-03-15 16:13:39 -0700
committerGravatar Nikolaus Rath <Nikolaus@rath.org>2017-03-15 16:13:39 -0700
commit13df95268223a2757d0e9000d3ab10980541a814 (patch)
tree10522405daf48e3a518e5d9a3f669a859ef331d0
parente572050d3fc3a1d6a08bfd6cd512edfaff48c9d2 (diff)
Document minimum required Meson version.
Fixes #138.
-rw-r--r--README.md6
-rw-r--r--meson.build1
2 files changed, 4 insertions, 3 deletions
diff --git a/README.md b/README.md
index be2e52e..00b423e 100644
--- 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 ..
diff --git a/meson.build b/meson.build
index a1e9b80..bcb3a10 100644
--- a/meson.build
+++ b/meson.build
@@ -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' ])
#