mirror of
https://git.yoctoproject.org/poky
synced 2026-07-16 03:47:03 +00:00
oe-selftest: cpp-example meson version warning
Newer versions of meson throw a warning if newer features are used without explicit declaration of the required meson version. (From OE-Core rev: 92d1c2343f9c7afe4ad627b3059f2e9556084d5d) Signed-off-by: Adrian Freihofer <adrian.freihofer@siemens.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
bc8676b46b
commit
bb5609c65d
@@ -6,7 +6,8 @@
|
|||||||
|
|
||||||
project('meson-example', 'cpp',
|
project('meson-example', 'cpp',
|
||||||
version: '1.0.0',
|
version: '1.0.0',
|
||||||
default_options: ['cpp_std=c++17']
|
default_options: ['cpp_std=c++17'],
|
||||||
|
meson_version: '>=1.1.0'
|
||||||
)
|
)
|
||||||
|
|
||||||
jsoncdep = dependency('json-c')
|
jsoncdep = dependency('json-c')
|
||||||
|
|||||||
Reference in New Issue
Block a user