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.
14 lines
314 B
14 lines
314 B
8 years ago
|
project('static vapi', 'c', 'vala')
|
||
|
|
||
|
glib = dependency('glib-2.0')
|
||
|
|
||
|
conf = configuration_data()
|
||
|
conf.set_quoted('VERSION', '1.0.0')
|
||
|
config_h = configure_file(output : 'config.h',
|
||
|
configuration : conf)
|
||
|
|
||
|
e = executable('static-vapi', 'vapi/config.vapi', 'test.vala',
|
||
|
dependencies : glib)
|
||
|
|
||
|
test('test-config', e)
|