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', |
| 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 | |
Ratan Gupta | f901e9c | 2021-02-03 09:04:59 +0530 | [diff] [blame] | 14 | # Ex: meson configure -Ddefault_time_mode=Mode::Manual |
Ratan Gupta | 8af2a89 | 2021-02-02 05:48:18 -0600 | [diff] [blame] | 15 | |
| 16 | option ( 'default_time_mode', type : 'combo', |
| 17 | choices: ['Mode::Manual', 'Mode::NTP'], |
| 18 | value : 'Mode::Manual', |
| 19 | description : 'The default time mode') |