build: bump minimum meson version to 0.50

We have seen a few build problems from users with version 0.49 (default
in Debian stable, backports has an update). We bumped this in master
already, but people keep running into it in our stable branch as well.

[Instead of backporting the various version changing commits from master
this is a stable branch only patch with the same result]
This commit is contained in:
Stefan Schmidt 2020-06-23 11:53:11 +02:00
parent 5bfdf26fb6
commit c7c5b49465
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
project('efl', ['c','cpp'],
version: '1.24.3',
default_options : ['buildtype=release', 'cpp_std=c++11'],
meson_version : '>=0.47'
meson_version : '>=0.50'
)
if host_machine.system() == 'darwin'