pebble/third_party/nanopb/tests/intsizes/SConscript
2025-01-27 11:38:16 -08:00

12 lines
305 B
Python

# Test that the int_size option in .proto works.
Import('env')
env.NanopbProto('intsizes')
p = env.Program(["intsizes_unittests.c",
"intsizes.pb.c",
"$COMMON/pb_encode.o",
"$COMMON/pb_decode.o",
"$COMMON/pb_common.o"])
env.RunTest(p)