[libcamera-devel] meson_options: Sort options alphabetically
diff mbox series

Message ID 20231205144619.26252-1-laurent.pinchart@ideasonboard.com
State Accepted
Commit 4eba2dc73c096d037a8a6390ff4a91ebbf1cedd4
Headers show
Series
  • [libcamera-devel] meson_options: Sort options alphabetically
Related show

Commit Message

Laurent Pinchart Dec. 5, 2023, 2:46 p.m. UTC
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>
---
 meson_options.txt | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)


base-commit: 9d08a134c4195ad98dd09c5a9e2558a5765762f7

Comments

Tomi Valkeinen Dec. 5, 2023, 2:49 p.m. UTC | #1
On 05/12/2023 16:46, Laurent Pinchart wrote:
> 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>
> ---
>   meson_options.txt | 10 +++++-----
>   1 file changed, 5 insertions(+), 5 deletions(-)
> 
> diff --git a/meson_options.txt b/meson_options.txt
> index fad928af4b62..5fdc7be87a54 100644
> --- a/meson_options.txt
> +++ b/meson_options.txt
> @@ -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.')
>   
> +option('pycamera',
> +        type : 'feature',
> +        value : 'disabled',
> +        description : 'Enable libcamera Python bindings (experimental)')
> +
>   option('qcam',
>           type : 'feature',
>           value : 'auto',
> @@ -75,8 +80,3 @@ option('v4l2',
>           type : 'boolean',
>           value : false,
>           description : 'Compile the V4L2 compatibility layer')
> -
> -option('pycamera',
> -        type : 'feature',
> -        value : 'disabled',
> -        description : 'Enable libcamera Python bindings (experimental)')
> 
> base-commit: 9d08a134c4195ad98dd09c5a9e2558a5765762f7

Reviewed-by: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>

  Tomi

Patch
diff mbox series

diff --git a/meson_options.txt b/meson_options.txt
index fad928af4b62..5fdc7be87a54 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -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.')
 
+option('pycamera',
+        type : 'feature',
+        value : 'disabled',
+        description : 'Enable libcamera Python bindings (experimental)')
+
 option('qcam',
         type : 'feature',
         value : 'auto',
@@ -75,8 +80,3 @@  option('v4l2',
         type : 'boolean',
         value : false,
         description : 'Compile the V4L2 compatibility layer')
-
-option('pycamera',
-        type : 'feature',
-        value : 'disabled',
-        description : 'Enable libcamera Python bindings (experimental)')