project('silent_or')

if get_option('foo') == 'true'
        or get_option('foo') == 'auto'
else
        message('If this message is printed then something is wrong. The or above should give a syntax error.')
endif