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:
Laurent Pinchart 2020-03-25 09:36:35 +02:00
parent e74885c870
commit 5e8933eeeb
5 changed files with 8 additions and 5 deletions

View file

@ -1,7 +1,4 @@
libcamera_sources += files([
'uvcvideo.cpp',
'vimc.cpp',
])
subdir('ipu3') subdir('ipu3')
subdir('rkisp1') subdir('rkisp1')
subdir('uvcvideo')
subdir('vimc')

View file

@ -0,0 +1,3 @@
libcamera_sources += files([
'uvcvideo.cpp',
])

View file

@ -0,0 +1,3 @@
libcamera_sources += files([
'vimc.cpp',
])