[libcamera-devel] [PATCH v2] py: meson: use files() for custom_target input files
Tomi Valkeinen
tomi.valkeinen at ideasonboard.com
Wed May 11 11:28:48 CEST 2022
Use files() for the input files for the custom_target(). I believe the
current code works, but perhaps it is safer to use files() here.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen at ideasonboard.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart at ideasonboard.com>
---
v2: Pass an array to files() as used elsewhere
src/py/libcamera/meson.build | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/py/libcamera/meson.build b/src/py/libcamera/meson.build
index 0cd7c75b..c169b0c8 100644
--- a/src/py/libcamera/meson.build
+++ b/src/py/libcamera/meson.build
@@ -17,10 +17,10 @@ pycamera_sources = files([
'pymain.cpp',
])
-gen_input_files = [
- meson.project_source_root() / 'src' / 'libcamera' / 'control_ids.yaml',
+gen_input_files = files([
+ '../../libcamera/control_ids.yaml',
'pyenums_generated.cpp.in',
-]
+])
gen_py_control_enums = files('gen-py-control-enums.py')
--
2.34.1
More information about the libcamera-devel
mailing list