Ratan Gupta | 8af2a89 | 2021-02-02 05:48:18 -0600 | [diff] [blame] | 1 | # Features List |
| 2 | |
| 3 | # command : meson configure -Dfeature_name=enabled |
| 4 | |
| 5 | option( 'tests', type : 'feature', |
Manojkiran Eda | 5f04019 | 2023-07-27 05:04:32 +0530 | [diff] [blame] | 6 | value: 'enabled', |
| 7 | description: 'Build unit tests' |
Ratan Gupta | 8af2a89 | 2021-02-02 05:48:18 -0600 | [diff] [blame] | 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 | |
Ratan Gupta | f901e9c | 2021-02-03 09:04:59 +0530 | [diff] [blame] | 15 | # Ex: meson configure -Ddefault_time_mode=Mode::Manual |
Ratan Gupta | 8af2a89 | 2021-02-02 05:48:18 -0600 | [diff] [blame] | 16 | |
| 17 | option ( 'default_time_mode', type : 'combo', |
| 18 | choices: ['Mode::Manual', 'Mode::NTP'], |
| 19 | value : 'Mode::Manual', |
| 20 | description : 'The default time mode') |
Lei YU | 3afad18 | 2023-07-18 13:41:30 +0800 | [diff] [blame] | 21 | |
| 22 | option( |
| 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 | ) |