aboutsummaryrefslogtreecommitdiff
path: root/test cases/common/187 find override/otherdir/meson.build
blob: dc41f5bf7b82b074430a9cfb1a5acb1d2d6ee6d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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 genererated
# 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)