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.
18 lines
435 B
18 lines
435 B
8 years ago
|
config = configure_file(input: 'config.vala.in',
|
||
|
output: 'config.vala',
|
||
|
configuration: cd)
|
||
|
|
||
|
print = find_program('write_wrapper.py')
|
||
|
wrapper = custom_target('wrapper',
|
||
|
output : 'print_wrapper.vala',
|
||
|
command : [print, '@OUTPUT@'])
|
||
|
|
||
|
copy = find_program('copy_file.py')
|
||
|
gen = generator(copy,
|
||
|
output : '@BASENAME@.vala',
|
||
|
arguments : ['@INPUT@', '@OUTPUT@'])
|
||
|
|
||
|
returncode = gen.process('returncode.in')
|
||
|
|
||
|
src = files('test.vala')
|