Add a SCons tool for nanopb protos.

This tool script is useful both for building the tests and also for use in other applications.
This commit is contained in:
Petteri Aimonen
2013-11-23 11:04:12 +02:00
parent 440a53f859
commit 1fc90ab4c4
5 changed files with 129 additions and 41 deletions

View File

@@ -12,6 +12,6 @@ env.NanopbProto("person")
# These are built using more strict warning flags.
strict = env.Clone()
strict.Append(CFLAGS = strict['CORECFLAGS'])
strict.Object("pb_decode.o", "#../pb_decode.c")
strict.Object("pb_encode.o", "#../pb_encode.c")
strict.Object("pb_decode.o", "$NANOPB/pb_decode.c")
strict.Object("pb_encode.o", "$NANOPB/pb_encode.c")