2025-02-15 08:44:15 +01:00
|
|
|
# -*- mode: meson -*-
|
2025-02-16 10:03:28 +01:00
|
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
option('version-tag', type : 'string', description : 'override the git version string')
|
2025-02-15 08:44:15 +01:00
|
|
|
option('htmldir', type : 'string', value : '', description : 'directory for HTML documentation')
|
2025-02-16 10:03:28 +01:00
|
|
|
option('rstdir', type : 'string', value : '', description : 'directory for ReST documentation')
|
2025-02-15 08:44:15 +01:00
|
|
|
|
2025-02-16 10:03:28 +01:00
|
|
|
option('docs', type : 'combo', choices : ['false', 'html', 'man', 'rst', 'all'], description : 'install documentation')
|
2025-02-15 08:44:15 +01:00
|
|
|
option('docs-build', type : 'boolean', value : false, description : 'build documentation')
|
2025-02-16 10:16:49 +01:00
|
|
|
option('tests', type : 'boolean', value : true, description : 'build tests')
|
2025-02-15 08:44:15 +01:00
|
|
|
|
2025-02-16 10:07:22 +01:00
|
|
|
option('python', type : 'feature', value: 'auto', description : 'Generate libnvme python bindings')
|
2025-02-15 08:44:15 +01:00
|
|
|
option('openssl', type : 'feature', value: 'auto', description : 'OpenSSL support')
|
2025-02-16 10:07:22 +01:00
|
|
|
option('libdbus', type : 'feature', value: 'disabled', description : 'libdbus support')
|
|
|
|
option('json-c', type : 'feature', value: 'auto', description : 'JSON support')
|
|
|
|
option('keyutils', type: 'feature', value: 'auto', description: 'keyutils support')
|