blob: dc94285cf269784f0953121b75f3bfd3083b58f9 [file] [log] [blame]
Ratan Gupta8af2a892021-02-02 05:48:18 -06001# Features List
2
3# command : meson configure -Dfeature_name=enabled
4
Patrick Williams76ca53e2025-03-03 11:08:20 -05005option(
6 'tests',
7 type: 'feature',
8 value: 'enabled',
9 description: 'Build unit tests',
10)
Ratan Gupta8af2a892021-02-02 05:48:18 -060011
12# Commandline variables list
13# Value can be assigned from commandline to below variables
14# otherwise default value will be considered
15# Command: meson configure -Doption=value
16
Ratan Guptaf901e9c2021-02-03 09:04:59 +053017# Ex: meson configure -Ddefault_time_mode=Mode::Manual
Ratan Gupta8af2a892021-02-02 05:48:18 -060018
Patrick Williams76ca53e2025-03-03 11:08:20 -050019option(
20 'default_time_mode',
21 type: 'combo',
22 choices: ['Mode::Manual', 'Mode::NTP'],
23 value: 'Mode::Manual',
24 description: 'The default time mode',
25)
Lei YU3afad182023-07-18 13:41:30 +080026
27option(
28 'default_time_sync_object_path',
29 type: 'string',
30 value: '/xyz/openbmc_project/time/sync_method',
Patrick Williams76ca53e2025-03-03 11:08:20 -050031 description: 'Default object path for time sync setting',
Lei YU3afad182023-07-18 13:41:30 +080032)