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.
14 lines
383 B
14 lines
383 B
8 years ago
|
marshaller_h = gnome.genmarshal('marshaller.h',
|
||
|
sources : 'marshaller.list',
|
||
|
header : true,
|
||
|
install : true,
|
||
|
install_dir : get_option('includedir'))
|
||
|
|
||
|
marshaller_c = gnome.genmarshal('marshaller.c',
|
||
|
sources : 'marshaller.list',
|
||
|
body : true)
|
||
|
|
||
|
genmarshalexe = executable('genmarshalprog', 'main.c', marshaller_c, marshaller_h,
|
||
|
dependencies : gobj)
|
||
|
test('genmarshal test', genmarshalexe)
|