diff options
author | Michael Catanzaro <mcatanzaro@gnome.org> | 2019-02-20 17:44:31 -0600 |
---|---|---|
committer | Jan-Michael Brummer <jan.brummer@tabos.org> | 2019-02-24 17:23:04 +0000 |
commit | f2b8170e3d1c100f15269ec6f9e82929b0756be2 (patch) | |
tree | 16c2c2ef5f6fd46f61d7181c01f6857b5b2591dc /meson_options.txt | |
parent | ca58a4243180873210265e9b9509edcc52662756 (diff) | |
download | epiphany-f2b8170e3d1c100f15269ec6f9e82929b0756be2.tar.gz |
Use feature type for meson options
This could break anyone currently using -Dunit_tests=false, but probably
not many people choose that.
Diffstat (limited to 'meson_options.txt')
-rw-r--r-- | meson_options.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/meson_options.txt b/meson_options.txt index 62f6c6e11..007c56393 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -5,8 +5,8 @@ option('developer_mode', ) option('network_tests', - type: 'boolean', - value: false, + type: 'feature', + value: 'disabled', description: 'Enable tests that require network access, if unit_tests are enabled' ) @@ -17,7 +17,7 @@ option('tech_preview', ) option('unit_tests', - type: 'boolean', - value: true, + type: 'feature', + value: 'enabled', description: 'Enable unit tests' ) |