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>
27 lines
780 B
Meson
27 lines
780 B
Meson
option('android',
|
|
type : 'boolean',
|
|
value : false,
|
|
description : 'Compile libcamera with Android Camera3 HAL interface')
|
|
|
|
option('documentation',
|
|
type : 'boolean',
|
|
description : 'Generate the project documentation')
|
|
|
|
option('gstreamer',
|
|
type : 'feature',
|
|
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')
|
|
|
|
option('v4l2',
|
|
type : 'boolean',
|
|
value : false,
|
|
description : 'Compile the V4L2 compatibility layer')
|