meson.build 123 B

123456789
  1. project('array test', 'c')
  2. arr = [
  3. 'func.c',
  4. 'prog.c']
  5. exe = executable('prog', sources : arr)
  6. test('arr test', exe)