meson.build 303 B

12345678
  1. project('options', 'c')
  2. # Test passing c_args and c_link_args options from the command line.
  3. assert(get_option('c_args') == ['-funroll-loops'],
  4. 'Incorrect value for c_args option.')
  5. assert(get_option('c_link_args') == ['-random_linker_option'],
  6. 'Incorrect value for c_link_args option.')