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.
10 lines
304 B
10 lines
304 B
project('valatest', 'vala', 'c') |
|
|
|
if not meson.is_unity() |
|
add_global_arguments('-Werror', language : 'c') |
|
endif |
|
|
|
valadeps = [dependency('glib-2.0', version : '>=2.32'), dependency('gobject-2.0')] |
|
|
|
e = executable('valaprog', 'GLib.Thread.vala', 'retcode.c', dependencies : valadeps) |
|
test('valatest', e)
|
|
|