diff options
author | Kieran Bingham <kieran.bingham@ideasonboard.com> | 2020-10-30 11:58:14 +0000 |
---|---|---|
committer | Kieran Bingham <kieran.bingham@ideasonboard.com> | 2021-12-08 14:56:21 +0000 |
commit | 2b6c1d0e568bbac46a170ec4c38193e5ac661d43 (patch) | |
tree | 316e166fcbb2dd67035a1d68ed9fd775400e0cf3 | |
parent | 0ea7e5c43e931e2b5eb124bc8a51ec8f8500ea23 (diff) |
DocumentationUseOnly: Force enable Vivid
To make sure we always build the Vivid pipeline in this branch,
explicitly add it to the build targets, and remove it from the pipeline
configuration choices.
This is not any kind of best practice for pipeline handlers, but is here
to ensure that this pipeline is always compiled on this branch who's
sole purpose is to use and demonstrate the vivid pipeline handler.
-rw-r--r-- | meson_options.txt | 2 | ||||
-rw-r--r-- | src/libcamera/pipeline/meson.build | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/meson_options.txt b/meson_options.txt index a36a61db..2c80ad8b 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -37,7 +37,7 @@ option('lc-compliance', option('pipelines', type : 'array', - choices : ['ipu3', 'raspberrypi', 'rkisp1', 'simple', 'uvcvideo', 'vimc', 'vivid'], + choices : ['ipu3', 'raspberrypi', 'rkisp1', 'simple', 'uvcvideo', 'vimc'], description : 'Select which pipeline handlers to include') option('qcam', diff --git a/src/libcamera/pipeline/meson.build b/src/libcamera/pipeline/meson.build index 30dc5b97..733aa737 100644 --- a/src/libcamera/pipeline/meson.build +++ b/src/libcamera/pipeline/meson.build @@ -3,3 +3,5 @@ foreach pipeline : pipelines subdir(pipeline) endforeach + +subdir('vivid') |