summaryrefslogtreecommitdiffstats
path: root/test cases/failing/79 override exe config/meson.build
blob: a5d09249c7ea61010be4381384a075a56c292bc7 (plain)
1
2
3
4
5
6
project('myexe', 'c')

foo = executable('foo', 'foo.c')
meson.override_find_program('bar', foo)
bar = find_program('bar')
run_command(bar, check: true)