aboutsummaryrefslogtreecommitdiffstats
path: root/meson/test cases/frameworks/7 gnome/genmarshal/meson.build
blob: d7189f575981997ccba45fb7ac3d45b8364b78b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
marshallers = gnome.genmarshal('marshaller',
sources : 'marshaller.list',
install_header : true,
install_dir : get_option('includedir'),
extra_args : ['-UG_ENABLE_DEBUG', '--prototypes'])

marshaller_c = marshallers[0]
marshaller_h = marshallers[1]

genmarshalexe = executable('genmarshalprog', 'main.c', marshaller_c, marshaller_h,
dependencies : gobj)
test('genmarshal test', genmarshalexe)