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.
15 lines
306 B
15 lines
306 B
|
|
libsources = ['golib.c', 'golib.h'] |
|
|
|
girexe = executable('girprog', libsources, 'prog.c', |
|
dependencies : [glib, gobj, gir, gmod]) |
|
|
|
gnome.generate_gir(girexe, |
|
sources : libsources, |
|
nsversion : '1.0', |
|
namespace : 'Meson', |
|
install : true, |
|
install_dir : 'typelibdir', |
|
) |
|
|
|
test('gobject introspection', girexe)
|
|
|