diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2023-06-10 11:32:11 +0200 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2023-06-10 11:52:49 +0200 |
commit | 1fb42e689f01d45fbe1f6ed078156c36bf37d9de (patch) | |
tree | 21a03cce8f19c9ca78a455a249cb1476a2ecd931 | |
parent | 8953e6beea84a8cebd44b53e36929a3e076a2544 (diff) | |
download | fiv-1fb42e689f01d45fbe1f6ed078156c36bf37d9de.tar.gz fiv-1fb42e689f01d45fbe1f6ed078156c36bf37d9de.tar.xz fiv-1fb42e689f01d45fbe1f6ed078156c36bf37d9de.zip |
Declare minimum Meson version
Due to our meson.add_install_script() usage, which results in a warning,
followed by an error.
-rw-r--r-- | meson.build | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 43631df..8699c9f 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,8 @@ # vim: noet ts=4 sts=4 sw=4: project('fiv', 'c', default_options : ['c_std=gnu99', 'warning_level=2'], - version : '0.1.0') + version : '0.1.0', + meson_version : '>=0.57') cc = meson.get_compiler('c') add_project_arguments( |