blob: b0bd08efa1058e8b08612f0e3b99e1329fe2d3d0 (
plain)
1
2
3
4
5
6
7
|
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
|