libcamera: pipeline: Move uvcvideo and vimc to subdirectories
Give a subdirectory to all pipeline handlers to make the structure of the source tree more consistent. This will also simplify the implementation of pipeline handlers selection at build time. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
This commit is contained in:
parent
e74885c870
commit
5e8933eeeb
5 changed files with 8 additions and 5 deletions
|
@ -1,7 +1,4 @@
|
||||||
libcamera_sources += files([
|
|
||||||
'uvcvideo.cpp',
|
|
||||||
'vimc.cpp',
|
|
||||||
])
|
|
||||||
|
|
||||||
subdir('ipu3')
|
subdir('ipu3')
|
||||||
subdir('rkisp1')
|
subdir('rkisp1')
|
||||||
|
subdir('uvcvideo')
|
||||||
|
subdir('vimc')
|
||||||
|
|
3
src/libcamera/pipeline/uvcvideo/meson.build
Normal file
3
src/libcamera/pipeline/uvcvideo/meson.build
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
libcamera_sources += files([
|
||||||
|
'uvcvideo.cpp',
|
||||||
|
])
|
3
src/libcamera/pipeline/vimc/meson.build
Normal file
3
src/libcamera/pipeline/vimc/meson.build
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
libcamera_sources += files([
|
||||||
|
'vimc.cpp',
|
||||||
|
])
|
Loading…
Add table
Add a link
Reference in a new issue