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.
18 lines
619 B
18 lines
619 B
5 years ago
|
project('foo', 'c', 'vala')
|
||
|
|
||
|
glib = dependency('glib-2.0')
|
||
|
gobject = dependency('gobject-2.0')
|
||
|
g_ir_compiler = find_program('g-ir-compiler')
|
||
|
|
||
|
foo = shared_library('foo', 'foo.vala',
|
||
|
install : true,
|
||
|
install_dir : [true, false, false, true],
|
||
|
vala_gir: 'Foo-1.0.gir',
|
||
|
dependencies: [glib, gobject])
|
||
|
|
||
|
custom_target('foo-typelib',
|
||
|
command: [g_ir_compiler, '--output', '@OUTPUT@', '@INPUT@'],
|
||
|
input: meson.current_build_dir() + '/Foo-1.0.gir',
|
||
|
output: 'Foo-1.0.typelib',
|
||
|
depends: foo)
|