aboutsummaryrefslogtreecommitdiff
path: root/test cases/common/110 allgenerate/meson.build
blob: 049e8498c449bfd564924cb7b29c61c2875f557b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Must have two languages here to exercise linker language
# selection bug
project('all sources generated', 'c', 'cpp')

comp = find_program('converter.py')

g = generator(comp,
  output : '@BASENAME@',
  arguments : ['@INPUT@', '@OUTPUT@'])

c = g.process('foobar.cpp.in')

prog = executable('genexe', c)

c2 = custom_target('c2gen',
  output : '@BASENAME@',
  input : 'foobar.cpp.in',
  command : [comp, '@INPUT@', '@OUTPUT@'])

prog2 = executable('genexe2', c2)