summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2017-11-21 21:19:29 +0530
committerNirbheek Chauhan <nirbheek@centricular.com>2018-03-10 19:05:19 +0530
commit7a42b2a852d9219ba402d3c6c3bb6f113e4c7680 (patch)
tree8783386ed2295730cc8ed6273296457f440c3398
parent0a96d6c9d27b4c70cb3e8d7ab66a354c85c9279d (diff)
downloadgobject-introspection-7a42b2a852d9219ba402d3c6c3bb6f113e4c7680.tar.gz
meson: Set default values for some options
-rw-r--r--meson_options.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/meson_options.txt b/meson_options.txt
index f665490a..b2d7e1e7 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -1,8 +1,8 @@
-option('cairo', type: 'boolean',
+option('cairo', type: 'boolean', value : false,
description: 'Use cairo for tests'
)
-option('doctool', type: 'boolean',
+option('doctool', type: 'boolean', value : true,
description: 'Install g-ir-doc-tool'
)
@@ -18,6 +18,6 @@ option('cairo-libname', type: 'string',
description: 'Custom name for the cairo-gobject library name'
)
-option('gir_build', type: 'boolean',
+option('gir_build', type: 'boolean', value : true,
description: 'Windows: post build (gir) stuff'
)