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.
38 lines
886 B
38 lines
886 B
conf = configuration_data() |
|
conf.set('HEADER', 'glib-object.h') |
|
|
|
meson_sample_header = configure_file( |
|
input : 'meson-sample.h.in', |
|
output : 'meson-sample.h', |
|
configuration : conf) |
|
|
|
libsources = ['meson-sample.c', meson_sample_header] |
|
|
|
girlib = shared_library( |
|
'girlib', |
|
sources : libsources, |
|
dependencies : gobj, |
|
install : true |
|
) |
|
|
|
girtarget = gnome.generate_gir( |
|
girlib, |
|
sources : libsources, |
|
nsversion : '1.0', |
|
namespace : 'Meson', |
|
symbol_prefix : 'meson_', |
|
identifier_prefix : 'Meson', |
|
includes : ['GObject-2.0'], |
|
export_packages : 'meson', |
|
install : true |
|
) |
|
meson_gir = girtarget[0] |
|
meson_typelib = girtarget[1] |
|
|
|
girlib_inc = include_directories('.') |
|
girlib_dep = declare_dependency(link_with : girlib, |
|
include_directories : [girlib_inc], |
|
dependencies : [gobj], |
|
# Everything that uses libgst needs this built to compile |
|
sources : girtarget, |
|
)
|
|
|