The Meson Build System http://mesonbuild.com/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

13 lines
269 B

project('vapi-test', ['c', 'vala'])
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)