diff options
author | Ezequiel Garcia <ezequiel@collabora.com> | 2019-11-20 08:45:49 -0300 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2020-09-24 21:08:40 +0300 |
commit | aac96e34ba73a2dd63a12be446fe8db3c04db12f (patch) | |
tree | 011d7233219b8b503fb7e2374477abb70ef934aa /utils | |
parent | da81e368e7724979d8e64c53a5a983deb9ab021a (diff) |
meson: Define python3 and python3-yaml required dependencies
With this change, meson will complain specifically about missing
python3 and missing python3-yaml. As specified by meson
documentation: https://mesonbuild.com/Python-module.html,
this change requires meson v0.51.
Signed-off-by: Ezequiel Garcia <ezequiel@collabora.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'utils')
-rw-r--r-- | utils/meson.build | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/utils/meson.build b/utils/meson.build index 456bf7f8..3d83b975 100644 --- a/utils/meson.build +++ b/utils/meson.build @@ -3,6 +3,7 @@ subdir('ipu3') ## Code generation +py_modules += ['yaml'] gen_controls = files('gen-controls.py') gen_formats = files('gen-formats.py') gen_header = files('gen-header.sh') |