access_gen_headers += custom_target(
header_file,
+ input: protocol_file,
output: header_file,
command: [
- gendispatch_prog, '--mode=aclheader', name, name.to_upper(), protocol_file,
+ gendispatch_prog, '--mode=aclheader', name, name.to_upper(), '@INPUT@',
],
capture: true,
)
access_gen_sources += custom_target(
source_file,
+ input: protocol_file,
output: source_file,
command: [
gendispatch_prog, '--mode=aclbody', name, name.to_upper(),
- protocol_file, header_file,
+ '@INPUT@', header_file,
],
capture: true,
)
access_gen_sym += custom_target(
syms_file,
+ input: protocol_file,
output: syms_file,
capture: true,
command: [
- gendispatch_prog, '--mode=aclsym', name, name.to_upper(), protocol_file,
+ gendispatch_prog, '--mode=aclsym', name, name.to_upper(), '@INPUT@',
]
)
access_gen_xml += custom_target(
xml_file,
+ input: protocol_file,
output: xml_file,
capture: true,
command: [
- gendispatch_prog, '--mode=aclapi', name, name.to_upper(), protocol_file,
+ gendispatch_prog, '--mode=aclapi', name, name.to_upper(), '@INPUT@',
],
)
endforeach