summaryrefslogtreecommitdiff
path: root/test cases/vala/11 generated vapi/meson.build
blob: 9e1303d3a8d40327f4f1a88d6c88b4ee20409830 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
project('vapi-test', ['c', 'vala'])

if host_machine.system() == 'cygwin'
  error('MESON_SKIP_TEST Does not work with the Vala currently packaged in cygwin')
endif

gnome = import('gnome')
subdir('libfoo')
subdir('libbar')

vapiexe = executable('vapigen-test',
  'main.vala',
  dependencies: [dependency('gobject-2.0'), libfoo_vapi, libbar_vapi],
  install: true,
)

test('vapigen-test', vapiexe)