You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
project('options', 'c') |
|
|
|
if get_option('testoption') != 'optval' |
|
error('Incorrect value to test option') |
|
endif |
|
|
|
if get_option('other_one') != false |
|
error('Incorrect value to boolean option.') |
|
endif |
|
|
|
if get_option('combo_opt') != 'combo' |
|
error('Incorrect value to combo option.') |
|
endif
|
|
|