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.
13 lines
333 B
13 lines
333 B
5 years ago
|
project('test glib target version and gresources', 'c', 'vala')
|
||
|
|
||
|
gnome = import('gnome')
|
||
|
|
||
|
glib = dependency('glib-2.0', version : '>=2.38')
|
||
|
gtk = dependency('gtk+-3.0')
|
||
|
|
||
|
subdir('gres')
|
||
|
|
||
|
e = executable('gtktemplate', 'test.vala', res, dependencies : [glib, gtk])
|
||
|
# No X on the CI, so disable this for now
|
||
|
#test('test-target-glib', e)
|