Add indentation to 'common/64 custom header generator' test case

pull/3198/head
Aleksey Filippov 7 years ago committed by Jussi Pakkanen
parent 9f7bdedc94
commit c03a2fd283
  1. 6
      test cases/common/64 custom header generator/meson.build

@ -3,9 +3,9 @@ project('custom header generator', 'c')
gen = find_program('makeheader.py')
generated_h = custom_target('makeheader.py',
output : 'myheader.lh', # Suffix not .h to ensure this works with custom suffixes, too.
input : 'input.def',
command : [gen, '@INPUT0@', '@OUTPUT0@', files('somefile.txt')])
output : 'myheader.lh', # Suffix not .h to ensure this works with custom suffixes, too.
input : 'input.def',
command : [gen, '@INPUT0@', '@OUTPUT0@', files('somefile.txt')])
prog = executable('prog', 'prog.c', generated_h)
test('gentest', prog)

Loading…
Cancel
Save