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.
 
 
 
 
 
 

26 lines
568 B

gen = find_program('codegen') # Should use overridden value set in "subdir".
src = custom_target('arrival',
input : 'source.desc',
output : 'file.c',
command : [gen, '@INPUT@', '@OUTPUT@']
)
e = executable('six', 'main.c', src)
test('six', e)
# The same again, but this time with a program that was genererated
# with configure_file.
gen = find_program('gencodegen')
src = custom_target('hundred',
input : 'source2.desc',
output : 'file2.c',
command : [gen, '@INPUT@', '@OUTPUT@']
)
e = executable('hundred', 'main2.c', src)
test('hundred', e)