summaryrefslogtreecommitdiffstats
path: root/test cases/unit/83 change option choices/meson_options.2.txt
blob: 4684673e1a1e1ff56547b8f44ecce9135e3752b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
option(
    'combo',
    type : 'combo',
    choices : ['b', 'c', 'd'],
    value : 'b',
)

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