mirror of
https://git.libcamera.org/libcamera/libcamera.git
synced 2025-07-23 08:35:07 +03:00
py: meson: Use files() for custom_target input files
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@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
This commit is contained in:
parent
f4783e6899
commit
ed3a440177
1 changed files with 3 additions and 3 deletions
|
@ -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')
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue