Fix bugs in proto3 mode encoding of submessages (#256)
[apps/agl-service-can-low-level.git] / tests / regression / issue_203 / SConscript
1 # Regression test for issue with multiple files generated at once
2
3 Import('env')
4
5 env.Command(['file1.pb.c', 'file1.pb.h', 'file2.pb.c', 'file2.pb.h'], ['file1.proto', 'file2.proto'],
6             env['NANOPB_PROTO_CMD'])
7
8 env.Object('file1.pb.c')
9 env.Object('file2.pb.c')