diff options
Diffstat (limited to 'meson_options.txt')
-rw-r--r-- | meson_options.txt | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/meson_options.txt b/meson_options.txt index 7aa41249..2104469e 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -18,6 +18,7 @@ option('cam', option('documentation', type : 'feature', + value : 'auto', description : 'Generate the project documentation') option('doc_werror', @@ -32,7 +33,8 @@ option('gstreamer', option('ipas', type : 'array', - choices : ['ipu3', 'rkisp1', 'rpi/vc4', 'simple', 'vimc'], + choices : ['ipu3', 'mali-c55', 'rkisp1', 'rpi/pisp', 'rpi/vc4', 'simple', + 'vimc'], description : 'Select which IPA modules to build') option('lc-compliance', @@ -50,10 +52,12 @@ option('pipelines', '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.') @@ -83,6 +87,7 @@ option('udev', description : 'Enable udev support for hotplug') option('v4l2', - type : 'boolean', - value : false, - description : 'Compile the V4L2 compatibility layer') + type : 'feature', + value : 'auto', + description : 'Compile the V4L2 compatibility layer', + deprecated : {'true': 'enabled', 'false': 'disabled'}) |