summaryrefslogtreecommitdiffstats
path: root/test cases/native/3 pipeline/src/meson.build
blob: 4e9ac116a06a0ed69f221fb4a2e39e3d570018e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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)