aboutsummaryrefslogtreecommitdiff
path: root/meson.options
diff options
context:
space:
mode:
Diffstat (limited to 'meson.options')
-rw-r--r--meson.options12
1 files changed, 12 insertions, 0 deletions
diff --git a/meson.options b/meson.options
index 50b1d8553..4e8323689 100644
--- a/meson.options
+++ b/meson.options
@@ -19,6 +19,18 @@ option('sandbox-shell', type : 'string', value : 'busybox',
description : 'path to a statically-linked shell to use as /bin/sh in sandboxes (usually busybox)',
)
+option('enable-tests', type : 'boolean', value : true,
+ description : 'whether to enable tests or not (requires rapidcheck and gtest)',
+)
+
+option('tests-color', type : 'boolean', value : true,
+ description : 'set to false to disable color output in gtest',
+)
+
+option('tests-brief', type : 'boolean', value : false,
+ description : 'set to true for shorter tests output',
+)
+
option('store-dir', type : 'string', value : '/nix/store',
description : 'path of the Nix store',
)