From 64e5a1ead76493e6f0f1e022496a322e756fd5bc Mon Sep 17 00:00:00 2001 From: Quentin Glidic Date: Tue, 26 Mar 2019 12:10:52 +0100 Subject: [PATCH] meson: Change check option type to "feature" This will allow downstream to force it enable if needed Signed-off-by: Quentin Glidic --- meson_options.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson_options.txt b/meson_options.txt index 03b5ace9..a26d912b 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -1,4 +1,4 @@ option('drun', type: 'boolean', value: true, description: 'Desktop file mode') option('window', type: 'boolean', value: true, description: 'Window switcher mode') option('timings', type: 'boolean', value: false, description: 'Timings output') -option('check', type: 'boolean', value: true, description: 'Build and run libcheck-based tests') +option('check', type: 'feature', description: 'Build and run libcheck-based tests')