meson.build 238 B

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