Indent fix.

This commit is contained in:
Jussi Pakkanen 2016-10-01 22:36:51 +03:00
parent 24e50b2697
commit f2df5f5567
1 changed files with 6 additions and 6 deletions

View File

@ -7,10 +7,10 @@ python = find_program('python3')
comp = '@0@/@1@'.format(meson.current_source_dir(), 'my_compiler.py')
mytarget = custom_target('bindat',
output : 'data.dat',
input : 'data_source.txt',
capture : true,
command : [python, comp, '@INPUT@'],
install : true,
install_dir : 'subdir'
output : 'data.dat',
input : 'data_source.txt',
capture : true,
command : [python, comp, '@INPUT@'],
install : true,
install_dir : 'subdir'
)