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.
15 lines
435 B
15 lines
435 B
project('pipeline test', 'c') |
|
|
|
# We need to run this executable locally so build it with |
|
# the host compiler. |
|
e1 = executable('srcgen', 'srcgen.c', native : true) |
|
|
|
gen = generator(e1, \ |
|
outputs : '@BASENAME@.c', # Line continuation inside arguments should work without needing a "\". |
|
arguments : ['@INPUT@', '@OUTPUT@']) |
|
|
|
generated = gen.process('input_src.dat') |
|
|
|
e2 = executable('prog', 'prog.c', generated) |
|
|
|
test('pipelined', e2)
|
|
|