aboutsummaryrefslogtreecommitdiffstats
path: root/meson/test cases/unit/84 change option choices/meson_options.1.txt
blob: d0326a55b1d2fc202d1a1ee0b393c2c6c733a31b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
option(
    'combo',
    type : 'combo',
    choices : ['a', 'b', 'c'],
    value : 'a',
)

option(
    'array',
    type : 'array',
    choices : ['a', 'b', 'c'],
    value : ['a'],
)