blob: 92d1f11860eed029458b0ba06657d1a24091769c [file] [log] [blame]
Ratan Gupta8af2a892021-02-02 05:48:18 -06001# Features List
2
3# command : meson configure -Dfeature_name=enabled
4
5option( 'tests', type : 'feature',
6 description: 'Build unit tests'
7 )
8
9# Commandline variables list
10# Value can be assigned from commandline to below variables
11# otherwise default value will be considered
12# Command: meson configure -Doption=value
13
Ratan Guptaf901e9c2021-02-03 09:04:59 +053014# Ex: meson configure -Ddefault_time_mode=Mode::Manual
Ratan Gupta8af2a892021-02-02 05:48:18 -060015
16option ( 'default_time_mode', type : 'combo',
17 choices: ['Mode::Manual', 'Mode::NTP'],
18 value : 'Mode::Manual',
19 description : 'The default time mode')