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.
 
 
 
 
 
 

11 lines
232 B

project('b', 'c')
c_dep = dependency('c', version:'2', fallback: ['c', 'c_dep'])
blib = library('b', 'b.c',
dependencies: c_dep)
b_dep = declare_dependency(
link_with: blib,
include_directories: include_directories('.'),
)