Use true instead of 'true' in meson_options

This commit is contained in:
pancake 2022-05-30 16:22:08 +02:00
parent 28651b962c
commit 13f437ed5a

View File

@ -45,6 +45,6 @@ option('use_dylink', type: 'boolean', value: true)
option('debugger', type: 'boolean', value: true)
option('want_ptrace_wrap', type: 'boolean', value: true)
option('nogpl', type: 'boolean', value: false)
option('use_webui', type: 'boolean', value: 'true', description: 'install different WebUIs for radare2')
option('use_webui', type: 'boolean', value: true, description: 'install different WebUIs for radare2')
option('enable_tests', type: 'boolean', value: true, description: 'Build unit tests in test/unit')
option('enable_r2r', type: 'boolean', value: true, description: 'Build r2r executable for regression ')