mirror of
https://github.com/google/pebble.git
synced 2025-03-19 02:21:21 +00:00
11 lines
287 B
Python
11 lines
287 B
Python
# Test the generation of message size #defines
|
|
|
|
Import('env')
|
|
|
|
incpath = env.Clone()
|
|
incpath.Append(PROTOCPATH = '#message_sizes')
|
|
|
|
incpath.NanopbProto("messages1")
|
|
incpath.NanopbProto("messages2")
|
|
|
|
incpath.Program(['dummy.c', 'messages1.pb.c', 'messages2.pb.c', '$COMMON/pb_common.o'])
|