From 9605641982850b0fd7007e6d1e0e69c6815eee66 Mon Sep 17 00:00:00 2001 From: gabime Date: Wed, 18 Sep 2019 15:31:09 +0300 Subject: [PATCH] Updatede meson --- meson_options.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/meson_options.txt b/meson_options.txt index 235b8d9f..3eea2b8f 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -1,6 +1,6 @@ -option('external_fmt', type: 'boolean', value: false) -option('enable_examples', type: 'boolean', value: true) -option('enable_benchmarks', type: 'boolean', value: false) -option('enable_tests', type: 'boolean', value: false) -option('library_type', type: 'combo', choices: ['static', 'shared'], value: 'static') -option('no_exceptions', type: 'boolean', value: false) +option('external_fmt', type: 'boolean', value: false, description: 'Use external fmt package instead of the bundled') +option('enable_examples', type: 'boolean', value: true, description: 'Build examples') +option('enable_benchmarks', type: 'boolean', value: false, description: 'Build benchmarks') +option('enable_tests', type: 'boolean', value: false, description: 'Build tests') +option('library_type', type: 'combo', choices: ['static', 'shared'], value: 'static', description: 'Library build type') +option('no_exceptions', type: 'boolean', value: false, description: 'Disabled exceptions - abort() instead any error')