SConscript 305 B

123456789101112
  1. # Test that the int_size option in .proto works.
  2. Import('env')
  3. env.NanopbProto('intsizes')
  4. p = env.Program(["intsizes_unittests.c",
  5. "intsizes.pb.c",
  6. "$COMMON/pb_encode.o",
  7. "$COMMON/pb_decode.o",
  8. "$COMMON/pb_common.o"])
  9. env.RunTest(p)