summaryrefslogtreecommitdiffstats
path: root/meson_options.txt
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-10 19:41:32 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-10 19:41:32 +0000
commitf26f66d866ba1a9f3204e6fdfe2b07e67b5492ad (patch)
treec953c007cbe4f60a147ab62f97937d58abb2e9ca /meson_options.txt
parentInitial commit. (diff)
downloadnvme-cli-f26f66d866ba1a9f3204e6fdfe2b07e67b5492ad.tar.xz
nvme-cli-f26f66d866ba1a9f3204e6fdfe2b07e67b5492ad.zip
Adding upstream version 2.8.upstream/2.8
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt72
1 files changed, 72 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt
new file mode 100644
index 0000000..c61dae0
--- /dev/null
+++ b/meson_options.txt
@@ -0,0 +1,72 @@
+# SPDX-License-Identifier: GPL-2.0-or-later
+option(
+ 'docs',
+ type : 'combo',
+ choices : ['false', 'html', 'man', 'all'],
+ description : 'install documentation'
+)
+option(
+ 'docs-build',
+ type : 'boolean',
+ value : false,
+ description : 'build documentation'
+)
+option(
+ 'dracutrulesdir',
+ type : 'string',
+ value : 'lib/dracut/dracut.conf.d/',
+ description : 'directory for dracut rules files'
+)
+option(
+ 'htmldir',
+ type : 'string',
+ value : '',
+ description : 'directory for HTML documentation'
+)
+option(
+ 'json-c',
+ type: 'feature',
+ value: 'auto',
+ description: 'JSON suppport'
+)
+option(
+ 'nvme-tests',
+ type : 'boolean',
+ value : false,
+ description: 'Run tests against real hardware'
+)
+option(
+ 'pdc-enabled',
+ type: 'boolean',
+ value : false,
+ description : 'set default Persistent Discovery Controllers behavior'
+)
+option(
+ 'rundir',
+ type: 'string',
+ value: 'run',
+ description: 'directory for volatile configuration files',
+)
+option(
+ 'systemctl',
+ type : 'string',
+ value : '/usr/bin/systemctl',
+ description : 'path to systemctl binary'
+)
+option(
+ 'systemddir',
+ type : 'string',
+ value : 'lib/systemd/system',
+ description : 'directory for systemd files'
+)
+option(
+ 'udevrulesdir',
+ type : 'string',
+ value : 'lib/udev/rules.d',
+ description : 'directory for udev rules files'
+)
+option(
+ 'version-tag',
+ type : 'string',
+ description : 'override the git version string'
+)