blob: 2fb804eecb7c9bfc33559d7e02669fcb2e34e30d (
plain)
1
2
3
4
5
6
7
|
compiler = find_program('gen.py')
gen = generator(compiler,
output: '@BASENAME@.h',
arguments : ['@INPUT@', '@OUTPUT@'])
hs = gen.process(cfile, files('source'))
executable('proggie', 'main.c', hs)
|