blob: 5cefc880b52943ed8742381c477a27d1cbe5efc2 [file] [log] [blame]
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 generated
# 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)