meson: Change build options' name
This commit is contained in:
@@ -8,25 +8,29 @@
|
||||
# in the COPYING file in the root directory of this source tree).
|
||||
# #############################################################################
|
||||
|
||||
option('with-legacy-support', type: 'integer', min: 0, max: 7, value: '5',
|
||||
# Read guidelines from https://wiki.gnome.org/Initiatives/GnomeGoals/MesonPorting
|
||||
|
||||
option('legacy_level', type: 'integer', min: 0, max: 7, value: '5',
|
||||
description: 'Support any legacy format: 7 to 1 for v0.7+ to v0.1+')
|
||||
option('with-programs', type: 'boolean', value: true,
|
||||
description: 'Enable programs build')
|
||||
option('with-contrib', type: 'boolean', value: false,
|
||||
description: 'Enable contrib build')
|
||||
option('with-tests', type: 'boolean', value: false,
|
||||
description: 'Enable tests build')
|
||||
option('with-debug-level', type: 'integer', min: 0, max: 9, value: 1, # Since 0.45.0
|
||||
option('debug_level', type: 'integer', min: 0, max: 9, value: 1,
|
||||
description: 'Enable run-time debug. See lib/common/debug.h')
|
||||
option('enable-multithread', type: 'boolean', value: true,
|
||||
description: 'Enable multi-threading when pthread is detected')
|
||||
option('enable-static-runtime', type: 'boolean', value: false,
|
||||
option('backtrace', type: 'boolean', value: false,
|
||||
description: 'Display a stack backtrace when execution generates a runtime exception')
|
||||
option('static_runtime', type: 'boolean', value: false,
|
||||
description: 'Link to static run-time libraries on MSVC')
|
||||
option('enable-zlib', type: 'boolean', value: false,
|
||||
|
||||
option('build_programs', type: 'boolean', value: true,
|
||||
description: 'Enable programs build')
|
||||
option('build_tests', type: 'boolean', value: false,
|
||||
description: 'Enable tests build')
|
||||
option('build_contrib', type: 'boolean', value: false,
|
||||
description: 'Enable contrib build')
|
||||
|
||||
option('multi_thread', type: 'feature', value: 'enabled',
|
||||
description: 'Enable multi-threading when pthread is detected')
|
||||
option('zlib', type: 'feature', value: 'auto',
|
||||
description: 'Enable zlib support')
|
||||
option('enable-lzma', type: 'boolean', value: false,
|
||||
option('lzma', type: 'feature', value: 'auto',
|
||||
description: 'Enable lzma support')
|
||||
option('enable-lz4', type: 'boolean', value: false,
|
||||
option('lz4', type: 'feature', value: 'auto',
|
||||
description: 'Enable lz4 support')
|
||||
option('enable-backtrace', type: 'boolean', value: false,
|
||||
description: 'Display a stack backtrace when execution generates a runtime exception. Only in debug build mode.')
|
||||
|
||||
Reference in New Issue
Block a user