mirror of
https://git.libcamera.org/libcamera/libcamera.git
synced 2025-07-17 17:35:06 +03:00
libcamera: Drop unneeded depend_files from meson custom targets
The meson custom_target() function accepts a 'depend_files' argument to list additional dependency files. Files already listed in the 'command' argument are handled automatically, and don't need to be added manually. Drop them. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
This commit is contained in:
parent
db27029ce4
commit
e36a6f4043
2 changed files with 0 additions and 2 deletions
|
@ -46,7 +46,6 @@ foreach header : control_source_files
|
||||||
control_headers += custom_target(header + '_h',
|
control_headers += custom_target(header + '_h',
|
||||||
input : input_files,
|
input : input_files,
|
||||||
output : header + '.h',
|
output : header + '.h',
|
||||||
depend_files : gen_controls,
|
|
||||||
command : [gen_controls, '-o', '@OUTPUT@', '@INPUT@'],
|
command : [gen_controls, '-o', '@OUTPUT@', '@INPUT@'],
|
||||||
install : true,
|
install : true,
|
||||||
install_dir : join_paths('include', include_dir))
|
install_dir : join_paths('include', include_dir))
|
||||||
|
|
|
@ -94,7 +94,6 @@ foreach source : control_source_files
|
||||||
control_sources += custom_target(source + '_cpp',
|
control_sources += custom_target(source + '_cpp',
|
||||||
input : input_files,
|
input : input_files,
|
||||||
output : source + '.cpp',
|
output : source + '.cpp',
|
||||||
depend_files : gen_controls,
|
|
||||||
command : [gen_controls, '-o', '@OUTPUT@', '@INPUT@'])
|
command : [gen_controls, '-o', '@OUTPUT@', '@INPUT@'])
|
||||||
endforeach
|
endforeach
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue