diff options
| -rw-r--r-- | meson.build | 2 | ||||
| -rw-r--r-- | meson.options | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/meson.build b/meson.build index d671ba5..7bc2184 100644 --- a/meson.build +++ b/meson.build @@ -20,7 +20,7 @@ gentoo_utils = static_library( link_with: [thiserror], ) -if get_option('test').enabled() +if get_option('tests').enabled() rust.test('unittests', gentoo_utils) endif diff --git a/meson.options b/meson.options index 02fa153..cf0463a 100644 --- a/meson.options +++ b/meson.options @@ -1,2 +1,2 @@ option('fuzz', type: 'feature', value: 'disabled') -option('test', type: 'feature', value: 'disabled')
\ No newline at end of file +option('tests', type: 'feature', value: 'disabled')
\ No newline at end of file |
