From 0c23e6545711802be279566946983310ca11c1d8 Mon Sep 17 00:00:00 2001 From: lzutao Date: Fri, 30 Nov 2018 01:41:06 +0700 Subject: [PATCH] Add meson version required to use option type (#4562) [skip ci] --- docs/markdown/Build-options.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/markdown/Build-options.md b/docs/markdown/Build-options.md index de48675f0..b8b1285d2 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