blob: ff5fd84b97a76d7756dd575da920552e85a770fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
gen_h = custom_target(
'gen.h',
command : [find_program('gen_header.py'), '@INPUT@', '@OUTPUT@'],
output : 'gen.h',
input : meson.project_source_root() / 'src/header.h'
)
gen2_h = custom_target(
'other.h',
command : [find_program('gen_header.py'), '@INPUT@', '@OUTPUT@'],
output : 'other.h',
input : meson.project_source_root() / 'include/other.h'
)
|