~mmach/netext73/meson

« back to all changes in this revision

Viewing changes to test cases/common/43 options/meson_options.txt

  • Committer: mmach
  • Date: 2021-02-15 11:29:44 UTC
  • Revision ID: netbit73@gmail.com-20210215112944-fpso7tr2yog0tam1
57

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
option('testoption', type : 'string', value : 'optval', description : 'An option ' + 'to do something')
2
 
option('other_one', type : 'boolean', value : not (not (not (not false))))
3
 
option('combo_opt', type : 'co' + 'mbo', choices : ['one', 'two', 'combo'], value : 'combo')
4
 
option('array_opt', type : 'array', choices : ['one', 'two', 'three'], value : ['one', 'two'])
5
 
option('free_array_opt', type : 'array')
6
 
option('integer_opt', type : 'integer', min : 0, max : -(-5), value : 3)
7
 
option('neg' + '_' + 'int' + '_' + 'opt', type : 'integer', min : -5, max : 5, value : -3)
8
 
option('CaseSenSiTivE', type : 'string', value: 'Some CAPS', description : 'An option with mixed capitaliziation')
9
 
option('CASESENSITIVE', type : 'string', value: 'ALL CAPS', description : 'An option with all caps')