~mmach/netext73/meson

« back to all changes in this revision

Viewing changes to test cases/common/170 source in dep/generated/meson.build

  • Committer: mmach
  • Date: 2021-02-15 11:29:44 UTC
  • Revision ID: netbit73@gmail.com-20210215112944-fpso7tr2yog0tam1
57

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
fp = find_program('genheader.py')
 
2
 
 
3
genh = custom_target('genh',
 
4
  input : 'funname',
 
5
  output : 'funheader.h',
 
6
  command : [fp, '@INPUT@', '@OUTPUT@'])
 
7
  
 
8
dep = declare_dependency(sources : [genh])
 
9
  
 
10
e = executable('genuser', 'main.c',
 
11
  dependencies : dep)
 
12
test('genuser', e)