meson: bump our requirement to meson 0.56.0.
For meson, I want to be particularly careful and not follow the "Debian
testing" rule as it bit us by the past for babl.
But this bump is probably OK:
* Debian stable has meson 0.56.2.
* meson 0.56.0 was released on 2020-10-30.
* GIMP 2.99 is a dev branch with no end release date yet.
This should also fix this warning at configuration time:
> WARNING: Project specifies a minimum meson_version '>=0.53.0' but uses features which were added in newer versions:
> * 0.55.0: {'Calling "add_dist_script" with File, CustomTarget, Index of CustomTarget, Executable, or ExternalProgram'}
We missed it until now because it was only happening with tarball builds
where gitversion_h could be a files() object, unlike in git builds.
This commit is contained in:
parent
76df38399c
commit
dd53de0f0b
1 changed files with 1 additions and 1 deletions
|
|
@ -1,7 +1,7 @@
|
|||
project('gimp',
|
||||
'c', 'cpp',
|
||||
version: '2.99.13',
|
||||
meson_version: '>=0.53.0',
|
||||
meson_version: '>=0.56.0',
|
||||
default_options: [
|
||||
'cpp_std=gnu++14',
|
||||
'buildtype=debugoptimized',
|
||||
|
|
|
|||
Loading…
Reference in a new issue