diff options
author | Adrian Freihofer <adrian.freihofer@siemens.com> | 2025-09-18 23:07:04 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-09-22 22:09:48 +0100 |
commit | bb5609c65d00a889135dd5d8c3676201d3a9e3eb (patch) | |
tree | 19a89cda69d2f5fef73be0eded16be34e08407c8 /meta-selftest | |
parent | bc8676b46b9aa8a2f83d497b3face86415cdda3c (diff) | |
download | poky-bb5609c65d00a889135dd5d8c3676201d3a9e3eb.tar.gz |
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>
Diffstat (limited to 'meta-selftest')
-rw-r--r-- | meta-selftest/recipes-test/cpp/files/meson.build | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta-selftest/recipes-test/cpp/files/meson.build b/meta-selftest/recipes-test/cpp/files/meson.build index 0e2b55f3a2..74a0e0173c 100644 --- a/meta-selftest/recipes-test/cpp/files/meson.build +++ b/meta-selftest/recipes-test/cpp/files/meson.build | |||
@@ -6,7 +6,8 @@ | |||
6 | 6 | ||
7 | project('meson-example', 'cpp', | 7 | project('meson-example', 'cpp', |
8 | version: '1.0.0', | 8 | version: '1.0.0', |
9 | default_options: ['cpp_std=c++17'] | 9 | default_options: ['cpp_std=c++17'], |
10 | meson_version: '>=1.1.0' | ||
10 | ) | 11 | ) |
11 | 12 | ||
12 | jsoncdep = dependency('json-c') | 13 | jsoncdep = dependency('json-c') |