summaryrefslogtreecommitdiff
path: root/test cases/unit/106 underspecified mtest/meson.build
blob: c0a88d6770c8368a8b4b66b9273a621dc86ec279 (plain)
1
2
3
4
5
6
7
8
project('underspecified deps', 'c')

runner = find_program('runner.py')
exe1 = executable('main1', 'main.c')
exe2 = executable('main2', 'main.c')

test('runner-with-exedep', runner, args: exe1)
test('runner-without-dep', runner, args: exe2.full_path())