diff options
Diffstat (limited to 'meson_options.txt')
-rw-r--r-- | meson_options.txt | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/meson_options.txt b/meson_options.txt index 74f1e71bf43..f6f21b4c02d 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -138,15 +138,17 @@ option( ) option( 'valgrind', - type : 'boolean', - value : true, - description : 'Build with valgrind support if possible' + type : 'combo', + value : 'auto', + choices : ['auto', 'true', 'false'], + description : 'Build with valgrind support' ) option( 'libunwind', - type : 'boolean', - value : true, - description : 'Use libunwind for stack-traces if possible' + type : 'combo', + value : 'auto', + choices : ['auto', 'true', 'false'], + description : 'Use libunwind for stack-traces' ) option( 'build-tests', |