diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2020-03-25 09:48:54 +0200 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2020-03-25 12:21:13 +0200 |
commit | ee7e2c93dfbf34b3500c895115c516e5e90d3e31 (patch) | |
tree | ebb230595311cf674313955c3f998874de12a79a /meson_options.txt | |
parent | a25533089bda04daf0243eda7e316baea0737e19 (diff) |
libcamera: Make pipeline handlers selectable at compile time
Add a 'pipelines' project option that specifies which pipeline handlers
to compile in. The corresponding IPA modules are automatically selected.
The default is to compile all pipeline handlers.
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>
Diffstat (limited to 'meson_options.txt')
-rw-r--r-- | meson_options.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt index b17b6de6..6464df83 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -12,6 +12,11 @@ option('gstreamer', value : 'auto', description : 'Compile libcamera GStreamer plugin') +option('pipelines', + type : 'array', + choices : ['ipu3', 'rkisp1', 'uvcvideo', 'vimc'], + description : 'Select which pipeline handlers to include') + option('test', type : 'boolean', description: 'Compile and include the tests') |