Home | History | Annotate | Download | only in issue_203
      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')
     10