meson.build 243 B

1234567
  1. prog1 = files('prog.c')
  2. lib1 = files('lib.c')
  3. test('subdir0', executable('subdir0', prog0, lib1), should_fail : true)
  4. test('subdir1', executable('subdir1', prog1, lib0), should_fail : true)
  5. test('subdir2', executable('subdir2', prog1, lib1))