From 89b1b7617cf7fc834f43fcbfd9127bc795a5937f Mon Sep 17 00:00:00 2001 From: Laurent Pinchart Date: Fri, 3 Apr 2026 23:23:40 +0300 Subject: [PATCH] meson: Print soft ISP boolean options as YES/NO MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit All boolean options in libcamera other than the soft ISP options are printed as YES/NO (with colours when supported by the terminal). Extend this to the soft ISP options for consistency. Signed-off-by: Laurent Pinchart Reviewed-by: Jacopo Mondi Reviewed-by: Barnabás Pőcze --- src/libcamera/software_isp/meson.build | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/libcamera/software_isp/meson.build b/src/libcamera/software_isp/meson.build index 7a2f704b..15f9e403 100644 --- a/src/libcamera/software_isp/meson.build +++ b/src/libcamera/software_isp/meson.build @@ -1,7 +1,9 @@ # SPDX-License-Identifier: CC0-1.0 softisp_enabled = pipelines.contains('simple') -summary({'SoftISP support' : softisp_enabled}, section : 'Configuration') +summary({'SoftISP support' : softisp_enabled}, + bool_yn : true, + section : 'Configuration') if not softisp_enabled subdir_done() @@ -13,7 +15,9 @@ mesa_works = cc.check_header('EGL/egl.h', required : get_option('softisp-gpu'), dependencies : libegl) -summary({'SoftISP GPU acceleration' : mesa_works}, section : 'Configuration') +summary({'SoftISP GPU acceleration' : mesa_works}, + bool_yn : true, + section : 'Configuration') libcamera_internal_sources += files([ 'benchmark.cpp',