diff options
Diffstat (limited to 'meson_options.txt')
-rw-r--r-- | meson_options.txt | 29 |
1 files changed, 20 insertions, 9 deletions
diff --git a/meson_options.txt b/meson_options.txt index fad928af..2104469e 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -18,8 +18,14 @@ option('cam', option('documentation', type : 'feature', + value : 'auto', description : 'Generate the project documentation') +option('doc_werror', + type : 'boolean', + value : false, + description : 'Treat documentation warnings as errors') + option('gstreamer', type : 'feature', value : 'auto', @@ -27,7 +33,8 @@ option('gstreamer', option('ipas', type : 'array', - choices : ['ipu3', 'rkisp1', 'rpi/vc4', 'vimc'], + choices : ['ipu3', 'mali-c55', 'rkisp1', 'rpi/pisp', 'rpi/vc4', 'simple', + 'vimc'], description : 'Select which IPA modules to build') option('lc-compliance', @@ -43,14 +50,22 @@ option('pipelines', 'auto', 'imx8-isi', 'ipu3', + 'mali-c55', 'rkisp1', + 'rpi/pisp', 'rpi/vc4', 'simple', 'uvcvideo', - 'vimc' + 'vimc', + 'virtual' ], description : 'Select which pipeline handlers to build. If this is set to "auto", all the pipelines applicable to the target architecture will be built. If this is set to "all", all the pipelines will be built. If both are selected then "all" will take precedence.') +option('pycamera', + type : 'feature', + value : 'auto', + description : 'Enable libcamera Python bindings (experimental)') + option('qcam', type : 'feature', value : 'auto', @@ -72,11 +87,7 @@ option('udev', description : 'Enable udev support for hotplug') option('v4l2', - type : 'boolean', - value : false, - description : 'Compile the V4L2 compatibility layer') - -option('pycamera', type : 'feature', - value : 'disabled', - description : 'Enable libcamera Python bindings (experimental)') + value : 'auto', + description : 'Compile the V4L2 compatibility layer', + deprecated : {'true': 'enabled', 'false': 'disabled'}) |