summaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorBirger Schacht <birger@rantanplan.org>2022-10-18 15:10:21 +0200
committerPhilip Jones <philj56@gmail.com>2022-10-18 19:09:09 +0100
commit01ddfe1510dd55830617590861b760dadc33dc85 (patch)
treead5f20736f240290bddbf6e71b04f1dd7a146fec /meson.build
parentf6481fd8baf793de17cb071e17ef7208f9db40c0 (diff)
Set the minimum required meson version to 0.61
The `install_symlink` was only introduced in version 0.61 of meson https://mesonbuild.com/Release-notes-for-0-61-0.html#install_symlink-function
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build1
1 files changed, 1 insertions, 0 deletions
diff --git a/meson.build b/meson.build
index dc6787b..1620ca3 100644
--- a/meson.build
+++ b/meson.build
@@ -3,6 +3,7 @@ project(
'c',
version: '0.6.0',
license: 'MIT',
+ meson_version: '>=0.61.0',
default_options: [
'c_std=c2x',
'optimization=3',