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.
17 lines
436 B
17 lines
436 B
project('vapi-test', ['c', 'vala']) |
|
|
|
if build_machine.system() == 'cygwin' |
|
error('MESON_SKIP_TEST GIR seems to be broken in Cygwin and no-one knows how to fix it. Thus we have to disable this.') |
|
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)
|
|
|