1# Features List
2
3# command : meson configure -Dfeature_name=enabled
4
5option( 'tests', type : 'feature',
6         value: 'enabled',
7         description: 'Build unit tests'
8      )
9
10# Commandline variables list
11# Value can be assigned from commandline to below variables
12# otherwise default value will be considered
13# Command: meson configure -Doption=value
14
15# Ex: meson configure -Ddefault_time_mode=Mode::Manual
16
17option ( 'default_time_mode', type : 'combo',
18          choices: ['Mode::Manual', 'Mode::NTP'],
19          value : 'Mode::Manual',
20          description : 'The default time mode')
21
22option(
23    'default_time_sync_object_path',
24    type: 'string',
25    value: '/xyz/openbmc_project/time/sync_method',
26    description: 'Default object path for time sync setting'
27)
28