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.
15 lines
415 B
15 lines
415 B
11 years ago
|
project('custom target', 'c')
|
||
|
|
||
|
python = find_program('python3')
|
||
|
|
||
|
comp = '@0@/@1@'.format(meson.current_source_dir(), 'my_compiler.py')
|
||
|
infile = '@0@/@1@'.format(meson.current_source_dir(), 'data_source.txt')
|
||
|
outfile = '@0@/@1@'.format(meson.current_build_dir(), 'data.dat')
|
||
|
|
||
|
mytarget = custom_target('bindat',
|
||
|
output : 'data.dat',
|
||
|
command : [python, comp, infile, outfile],
|
||
|
install : true,
|
||
|
install_dir : 'subdir'
|
||
|
)
|