Ratan Gupta | 8af2a89 | 2021-02-02 05:48:18 -0600 | [diff] [blame] | 1 | # Features List |
| 2 | |
| 3 | # command : meson configure -Dfeature_name=enabled |
| 4 | |
Patrick Williams | 76ca53e | 2025-03-03 11:08:20 -0500 | [diff] [blame] | 5 | option( |
| 6 | 'tests', |
| 7 | type: 'feature', |
| 8 | value: 'enabled', |
| 9 | description: 'Build unit tests', |
| 10 | ) |
Ratan Gupta | 8af2a89 | 2021-02-02 05:48:18 -0600 | [diff] [blame] | 11 | |
| 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 Gupta | f901e9c | 2021-02-03 09:04:59 +0530 | [diff] [blame] | 17 | # Ex: meson configure -Ddefault_time_mode=Mode::Manual |
Ratan Gupta | 8af2a89 | 2021-02-02 05:48:18 -0600 | [diff] [blame] | 18 | |
Patrick Williams | 76ca53e | 2025-03-03 11:08:20 -0500 | [diff] [blame] | 19 | option( |
| 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 YU | 3afad18 | 2023-07-18 13:41:30 +0800 | [diff] [blame] | 26 | |
| 27 | option( |
| 28 | 'default_time_sync_object_path', |
| 29 | type: 'string', |
| 30 | value: '/xyz/openbmc_project/time/sync_method', |
Patrick Williams | 76ca53e | 2025-03-03 11:08:20 -0500 | [diff] [blame] | 31 | description: 'Default object path for time sync setting', |
Lei YU | 3afad18 | 2023-07-18 13:41:30 +0800 | [diff] [blame] | 32 | ) |