blob: ddc9830d5632093ab16cd4f184a4f17288f7b3dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
project('multiple-gobject-introspection', 'c')
gir = find_program('g-ir-scanner', required: false)
if not gir.found()
error('MESON_SKIP_TEST g-ir-scanner not found.')
endif
gnome = import('gnome')
gobj = dependency('gobject-2.0')
subdir('mesongir')
subdir('gir')
|