summaryrefslogtreecommitdiffstats
path: root/test cases/native/9 override with exe/meson.build
blob: 5275532b96d39c5f1c63cad62726afc07a681ad0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
project('myexe', 'c', version: '0.1')
sub = subproject('sub')

prog = find_program('foobar', version : '>= 2.0', required : false)
assert(not prog.found())

prog = find_program('foobar', version : '>= 1.0')
custom1 = custom_target('custom1',
                        build_by_default : true,
                        input : [],
                        output : 'main1.c',
                        command : [prog, '@OUTPUT@'])
gen = generator(prog,
                output : '@BASENAME@.c',
                arguments : ['@OUTPUT@'])
custom2 = gen.process('main2.input')

message(prog.full_path())

executable('e1', custom1)
executable('e2', custom2)