meson.build 244 B

1234567891011121314
  1. project('A', 'c')
  2. # Same as the previous test but use C and B in
  3. # the opposite order.
  4. C = subproject('C')
  5. c = C.get_variable('c')
  6. B = subproject('B')
  7. b = B.get_variable('b')
  8. a = executable('a', 'a.c', link_with : [b, c])
  9. test('a test', a)