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.
20 lines
404 B
20 lines
404 B
libsources = ['meson-sample.c', 'meson-sample.h'] |
|
|
|
girexe = executable( |
|
'girprog', |
|
sources : [libsources, 'prog.c'], |
|
dependencies : [glib, gobj, gir] |
|
) |
|
|
|
gnome.generate_gir( |
|
girexe, |
|
sources : libsources, |
|
nsversion : '1.0', |
|
namespace : 'Meson', |
|
symbol_prefix : 'meson_', |
|
identifier_prefix : 'Meson', |
|
includes : ['GObject-2.0'], |
|
install : true |
|
) |
|
|
|
test('gobject introspection', girexe)
|
|
|