summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2017-11-17 16:37:50 -0800
committerDylan Baker <dylan@pnwbakers.com>2017-11-22 12:47:43 -0800
commit48f64e591f31b1e0114b64a470144059bdb09ac3 (patch)
tree064e2183bdb9167a70e7035f107b063523b8a051 /meson_options.txt
parent4b61b07e4b61fdb8ed90a02f3716e608b4d10fc8 (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.txt5
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(