blob: 8f03101aa7b3b2ba9f930dbefff8f7b6afac2183 [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
14# Ex: meson configure -Dobj_path_bmc=path
15
16option ( 'busname', type : 'string',
17 value : 'xyz.openbmc_project.Time.Manager',
18 description : 'The Time Manager DBus busname to own')
19
20option ( 'obj_path_bmc', type : 'string',
21 value : '/xyz/openbmc_project/time/bmc',
22 description : 'The bmc epoch Dbus root')
23
24option ( 'default_time_mode', type : 'combo',
25 choices: ['Mode::Manual', 'Mode::NTP'],
26 value : 'Mode::Manual',
27 description : 'The default time mode')