meson_options: Sort options alphabetically

The pycamera option was added at the end of the file, breaking
alphabetical order. Restore it.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
This commit is contained in:
Laurent Pinchart 2023-12-04 17:01:58 +02:00
parent 9d08a134c4
commit 4eba2dc73c

View file

@ -51,6 +51,11 @@ option('pipelines',
], ],
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.') 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 : 'disabled',
description : 'Enable libcamera Python bindings (experimental)')
option('qcam', option('qcam',
type : 'feature', type : 'feature',
value : 'auto', value : 'auto',
@ -75,8 +80,3 @@ option('v4l2',
type : 'boolean', type : 'boolean',
value : false, value : false,
description : 'Compile the V4L2 compatibility layer') description : 'Compile the V4L2 compatibility layer')
option('pycamera',
type : 'feature',
value : 'disabled',
description : 'Enable libcamera Python bindings (experimental)')