blob: 92d1f11860eed029458b0ba06657d1a24091769c [file] [log] [blame]
# Features List
# command : meson configure -Dfeature_name=enabled
option( 'tests', type : 'feature',
description: 'Build unit tests'
)
# Commandline variables list
# Value can be assigned from commandline to below variables
# otherwise default value will be considered
# Command: meson configure -Doption=value
# Ex: meson configure -Ddefault_time_mode=Mode::Manual
option ( 'default_time_mode', type : 'combo',
choices: ['Mode::Manual', 'Mode::NTP'],
value : 'Mode::Manual',
description : 'The default time mode')