[libcamera-devel] [PATCH] py: meson: use files() for custom_target input files
Tomi Valkeinen
tomi.valkeinen at ideasonboard.com
Wed May 11 10:23:46 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>
---
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..3f7ddf1d 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