The Meson Build System http://mesonbuild.com/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

21 lines
647 B

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)