diff options
| author | Gabríel Arthúr Pétursson <gabriel@system.is> | 2017-07-08 02:53:26 +0000 |
|---|---|---|
| committer | Jussi Pakkanen <jpakkane@gmail.com> | 2017-07-15 10:21:41 +0200 |
| commit | fd653d070d7d498ca8bb8a2430ed128d6239601d (patch) | |
| tree | c6326e4bacc10e3843f9ea8f63ded160633feee8 /test cases | |
| parent | 5d1e35fa0153cb40428d67ae6553d33b25e01ff8 (diff) | |
| download | meson-fd653d070d7d498ca8bb8a2430ed128d6239601d.tar.gz | |
Make base options accessible via get_option()
Diffstat (limited to 'test cases')
| -rw-r--r-- | test cases/common/47 options/meson.build | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test cases/common/47 options/meson.build b/test cases/common/47 options/meson.build index 796c27f65..4058748f0 100644 --- a/test cases/common/47 options/meson.build +++ b/test cases/common/47 options/meson.build @@ -12,6 +12,10 @@ if get_option('combo_opt') != 'combo' error('Incorrect value to combo option.') endif +if get_option('b_lto') != false + error('Incorrect value in base option.') +endif + if get_option('includedir') != 'include' error('Incorrect value in builtin option.') endif |
