meson: Fix deprecated build warnings on build options

Meson now reserves the `build_` prefix for options
This commit is contained in:
Lzu Tao
2019-06-29 02:22:39 +07:00
parent 4d156854fe
commit 8e590a1af3
4 changed files with 14 additions and 14 deletions
+3 -3
View File
@@ -19,11 +19,11 @@ option('backtrace', type: 'boolean', value: false,
option('static_runtime', type: 'boolean', value: false,
description: 'Link to static run-time libraries on MSVC')
option('build_programs', type: 'boolean', value: true,
option('bin_programs', type: 'boolean', value: true,
description: 'Enable programs build')
option('build_tests', type: 'boolean', value: false,
option('bin_tests', type: 'boolean', value: false,
description: 'Enable tests build')
option('build_contrib', type: 'boolean', value: false,
option('bin_contrib', type: 'boolean', value: false,
description: 'Enable contrib build')
option('multi_thread', type: 'feature', value: 'enabled',