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.
10 lines
294 B
10 lines
294 B
4 years ago
|
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)
|