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.
17 lines
435 B
17 lines
435 B
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')
|
|
|