summaryrefslogtreecommitdiffstats
path: root/test cases/vala/15 static vapi in source tree/meson.build
blob: 44bea484a41e72c7410cb925500d05117b6fdc7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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)