summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorErik Faye-Lund <kusmabite@gmail.com>2017-10-25 10:02:38 +0200
committerErik Faye-Lund <kusmabite@gmail.com>2017-10-31 15:44:13 +0100
commit5c2ff5773a707519f6a773126f201c4e1e8a42d7 (patch)
tree2dbfa8079ff6d1d73aa3bf9a8b2388724de162a3 /meson_options.txt
parent5010436e09f3a7acae679e192d2fe65f04c87c79 (diff)
meson: do not search for needless deps
If we don't want to use these deps, there's no good reason to search for them in the first place. This should shave a bit of time for the initial build. Signed-off-by: Erik Faye-Lund <kusmabite@gmail.com> Reviewed-by: Eric Engestrom <eric.engestrom@imgtec.com>
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt14
1 files changed, 8 insertions, 6 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 74f1e71bf43..f6f21b4c02d 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -138,15 +138,17 @@ option(
)
option(
'valgrind',
- type : 'boolean',
- value : true,
- description : 'Build with valgrind support if possible'
+ type : 'combo',
+ value : 'auto',
+ choices : ['auto', 'true', 'false'],
+ description : 'Build with valgrind support'
)
option(
'libunwind',
- type : 'boolean',
- value : true,
- description : 'Use libunwind for stack-traces if possible'
+ type : 'combo',
+ value : 'auto',
+ choices : ['auto', 'true', 'false'],
+ description : 'Use libunwind for stack-traces'
)
option(
'build-tests',