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.
9 lines
399 B
9 lines
399 B
# https://github.com/mesonbuild/meson/pull/2291 |
|
copy = find_program('copyfile.py') |
|
configure_file(input : 'main.h', |
|
output : 'main.h', |
|
command : [copy, '@INPUT@', '@OUTPUT@']) |
|
ctfile = custom_target('emptyfile', |
|
input : 'emptyfile.c', |
|
output : 'emptyfile.c', |
|
command : [copy, '@INPUT@', '@OUTPUT@'])
|
|
|