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.
14 lines
332 B
14 lines
332 B
project('pipeline test', 'c') |
|
|
|
e1 = executable('srcgen', 'srcgen.c', native : true) |
|
|
|
# Generate a header file that needs to be included. |
|
gen = generator(e1, |
|
output : '@BASENAME@.h', |
|
arguments : ['@INPUT@', '@OUTPUT@']) |
|
|
|
generated = gen.process('input_src.dat') |
|
|
|
e2 = executable('prog', 'prog.c', generated) |
|
|
|
test('pipelined', e2) |