From 9a6809daca63cf6860ac9d92ae4b2dde36239b0e Mon Sep 17 00:00:00 2001 From: wael <40663@proton.me> Date: Wed, 21 Sep 2022 07:39:13 +0300 Subject: [PATCH] meson_options: fix bool options --- meson_options.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/meson_options.txt b/meson_options.txt index 093e47af..b9cb0757 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -14,7 +14,7 @@ option('with_wayland', type : 'feature', value : 'disabled') option('with_dbus', type : 'feature', value : 'enabled') option('with_dlsym', type : 'feature', value : 'disabled') option('loglevel', type: 'combo', choices : ['trace', 'debug', 'info', 'warn', 'err', 'critical', 'off'], value : 'info', description: 'Max log level in non-debug build') -option('mangoapp', type: 'boolean', value : 'false') -option('mangohudctl', type: 'boolean', value : 'false') -option('mangoapp_layer', type: 'boolean', value : 'false') +option('mangoapp', type: 'boolean', value : false) +option('mangohudctl', type: 'boolean', value : false) +option('mangoapp_layer', type: 'boolean', value : false) option('tests', type: 'feature', value: 'auto', description: 'Run tests')