aboutsummaryrefslogtreecommitdiff
path: root/test cases/unit/36 exe_wrapper behaviour/meson.build
blob: 16a44d5f7b27bd97f8216c4850eabdc2d0483147 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
project('exe wrapper behaviour', 'c')

assert(meson.is_cross_build(), 'not setup as cross build')
assert(meson.has_exe_wrapper(), 'exe wrapper not defined?')

exe = executable('prog', 'prog.c')

if get_option('custom-target')
  custom_target('use-exe-wrapper',
    build_by_default: true,
    output: 'out.txt',
    command: [exe, '@OUTPUT@'])
endif

test('test-prog', exe)

if get_option('run-target')
  run_target('run-prog', command : exe)
endif