diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2017-11-17 16:37:50 -0800 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2017-11-22 12:47:43 -0800 |
commit | 48f64e591f31b1e0114b64a470144059bdb09ac3 (patch) | |
tree | 064e2183bdb9167a70e7035f107b063523b8a051 /meson_options.txt | |
parent | 4b61b07e4b61fdb8ed90a02f3716e608b4d10fc8 (diff) |
meson: convert llvm option to tristate
This option has been acting as a strange sort of half-tri state anyway.
Signed-off-by: Dylan Baker <dylanx.c.baker@intel.com>
Reviewed-by: Eric Engestrom <eric.engestrom@imgtec.com>
Diffstat (limited to 'meson_options.txt')
-rw-r--r-- | meson_options.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/meson_options.txt b/meson_options.txt index 1134a25029..44d46fe0b3 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -132,8 +132,9 @@ option( ) option( 'llvm', - type : 'boolean', - value : true, + type : 'combo', + value : 'auto', + choices : ['auto', 'true', 'false'], description : 'Build with LLVM support.' ) option( |