Updatede meson

This commit is contained in:
gabime 2019-09-18 15:31:09 +03:00
parent e52672c263
commit 9605641982
1 changed files with 6 additions and 6 deletions

View File

@ -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')