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
326 B

project('subproj user', 'c')
sub = subproject('sublib')
if is_subproject()
error('Claimed to be a subproject even though we are the master project.')
endif
inc = sub.get_variable('i')
lib = sub.get_variable('l')
e = executable('user', 'user.c', include_dirs : inc, link_with : lib, install : true)
test('subdirtest', e)