meson.build 289 B

123456
  1. project('options', 'c')
  2. assert(get_option('testoption') == 'A string with spaces', 'Incorrect value for testoption option.')
  3. assert(get_option('other_one') == true, 'Incorrect value for other_one option.')
  4. assert(get_option('combo_opt') == 'one', 'Incorrect value for combo_opt option.')