aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorlzutao <taolzu@gmail.com>2018-11-30 01:41:06 +0700
committerNirbheek Chauhan <nirbheek.chauhan@gmail.com>2018-11-30 00:11:06 +0530
commit0c23e6545711802be279566946983310ca11c1d8 (patch)
tree6a97d07dab73d2a91fd3865d991e60928e3beb50 /docs
parentb0611bdd9a2c21fb55ec5604c445bca124011ab3 (diff)
downloadmeson-0c23e6545711802be279566946983310ca11c1d8.zip
meson-0c23e6545711802be279566946983310ca11c1d8.tar.gz
meson-0c23e6545711802be279566946983310ca11c1d8.tar.bz2
Add meson version required to use option type (#4562) [skip ci]
Diffstat (limited to 'docs')
-rw-r--r--docs/markdown/Build-options.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/markdown/Build-options.md b/docs/markdown/Build-options.md
index de48675..b8b1285 100644
--- a/docs/markdown/Build-options.md
+++ b/docs/markdown/Build-options.md
@@ -17,9 +17,9 @@ option('someoption', type : 'string', value : 'optval', description : 'An option
option('other_one', type : 'boolean', value : false)
option('combo_opt', type : 'combo', choices : ['one', 'two', 'three'], value : 'three')
option('integer_opt', type : 'integer', min : 0, max : 5, value : 3) # Since 0.45.0
-option('free_array_opt', type : 'array', value : ['one', 'two'])
+option('free_array_opt', type : 'array', value : ['one', 'two']) # Since 0.44.0
option('array_opt', type : 'array', choices : ['one', 'two', 'three'], value : ['one', 'two'])
-option('some_feature', type : 'feature', value : 'enabled')
+option('some_feature', type : 'feature', value : 'enabled') # Since 0.47.0
```
## Build option types