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.
 
 
 
 
 
 

9 lines
294 B

project('implicit custom dirs', 'c')
subdir('easytogrepfor')
l = static_library('helper', 'helper.c', genh)
d = declare_dependency(link_with: l, sources: genh)
executable('prog', 'prog.c', dependencies: d, implicit_include_directories: false)
executable('prog2', 'prog2.c', dependencies: d)