blob: 2c99b02835666dd0e6412b8d054b8fe7e23a9c39 [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',
Manojkiran Eda5f040192023-07-27 05:04:32 +05306 value: 'enabled',
7 description: 'Build unit tests'
Ratan Gupta8af2a892021-02-02 05:48:18 -06008 )
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
Ratan Guptaf901e9c2021-02-03 09:04:59 +053015# Ex: meson configure -Ddefault_time_mode=Mode::Manual
Ratan Gupta8af2a892021-02-02 05:48:18 -060016
17option ( 'default_time_mode', type : 'combo',
18 choices: ['Mode::Manual', 'Mode::NTP'],
19 value : 'Mode::Manual',
20 description : 'The default time mode')
Lei YU3afad182023-07-18 13:41:30 +080021
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)