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.
30 lines
643 B
30 lines
643 B
libsources = ['meson-subsample.c', 'meson-subsample.h'] |
|
|
|
girsubproject = shared_library( |
|
'girsubproject', |
|
sources : libsources, |
|
dependencies : [gobj, girlib_dep], |
|
install : true |
|
) |
|
|
|
girexe = executable( |
|
'girprog', |
|
sources : 'prog.c', |
|
dependencies : [gobj, girlib_dep], |
|
link_with : girsubproject |
|
) |
|
|
|
gnome.generate_gir( |
|
girsubproject, |
|
sources : libsources, |
|
nsversion : '1.0', |
|
namespace : 'MesonSub', |
|
symbol_prefix : 'meson_sub_', |
|
identifier_prefix : 'MesonSub', |
|
includes : ['GObject-2.0', meson_gir], |
|
install : true |
|
) |
|
|
|
message('TEST: ' + girsubproject.outdir()) |
|
|
|
test('gobject introspection/subproject/c', girexe)
|
|
|