1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
libsources = ['meson-subsample.c', 'meson-subsample.h']
girlib = shared_library(
'girlib',
sources : libsources,
dependencies : [gobj, statichelper_dep],
install : true
)
girexe = executable(
'girprog',
sources : 'prog.c',
dependencies : [gobj, statichelper_dep],
link_with : girlib
)
gnome.generate_gir(
girlib, statichelper_lib,
sources : [ libsources, statichelper_sources ],
nsversion : '1.0',
namespace : 'Meson',
symbol_prefix : 'meson_',
identifier_prefix : 'Meson',
includes : ['GObject-2.0'],
install : true
)
test('gobject introspection/subproject/c', girexe)
|