From b6843e012eddcfe403034036420b13895166a76b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antonio=20V=C3=A1zquez=20Blanco?= Date: Tue, 19 Aug 2025 19:08:59 +0200 Subject: [PATCH] meson: Separate documentation options MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: Ie7ad3e6acaf7fcac93b7542f3b3d65e072858802 Signed-off-by: Antonio Vázquez Blanco Reviewed-on: https://review.coreboot.org/c/flashrom/+/88861 Tested-by: build bot (Jenkins) Reviewed-by: Anastasia Klimchuk --- meson_options.txt | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/meson_options.txt b/meson_options.txt index 2829cd175..abe3391d7 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -18,9 +18,6 @@ option('programmer', type : 'array', value : ['auto'], choices : [ 'usbblaster_spi', ], description: 'Active programmers') option('llvm_cov', type : 'feature', value : 'disabled', description : 'build for llvm code coverage') -option('man-pages', type : 'feature', value : 'auto', description : 'build the man-page for classic_cli') -option('documentation', type : 'feature', value : 'auto', description : 'build the html documentation') -option('generate_authors_list', type : 'feature', value : 'auto', description : 'include automatically-generated lists of authors in the HTML documentation') option('ni845x_search_path', type : 'string', value : 'C:\Program Files (x86)\National Instruments\Ni-845x\MS Visual C', description : 'Path to search for the proprietary ni845x library and header (32-bit Windows only)') option('delay_minimum_sleep_us', type : 'integer', min : 0, value : 100, @@ -29,3 +26,8 @@ option('delay_minimum_sleep_us', type : 'integer', min : 0, value : 100, option('rpmc', type : 'feature', value : 'auto', description : 'Support for Replay Protected Monotonic Counter (RPMC) commands as specified by JESD260') option('log_message_length_limit', type : 'integer', min : 64, max : 1024, value : 256, description : 'Log message length limit for v2 logging API') + +# Documentation options +option('man-pages', type : 'feature', value : 'auto', description : 'build the man-page for classic_cli') +option('documentation', type : 'feature', value : 'auto', description : 'build the html documentation') +option('generate_authors_list', type : 'feature', value : 'auto', description : 'include automatically-generated lists of authors in the HTML documentation')