meson.build 174 B

1234567891011
  1. project('A', 'c')
  2. B = subproject('B')
  3. b = B.get_variable('b')
  4. C = subproject('C')
  5. c = C.get_variable('c')
  6. a = executable('a', 'a.c', link_with : [b, c])
  7. test('a test', a)