diff options
Diffstat (limited to 'CAN-binder/libs/nanopb/tests/options/SConscript')
-rw-r--r-- | CAN-binder/libs/nanopb/tests/options/SConscript | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/CAN-binder/libs/nanopb/tests/options/SConscript b/CAN-binder/libs/nanopb/tests/options/SConscript new file mode 100644 index 00000000..215e3bd0 --- /dev/null +++ b/CAN-binder/libs/nanopb/tests/options/SConscript @@ -0,0 +1,12 @@ +# Test that the generator options work as expected. + +Import("env") + +env.NanopbProto("options") +env.Object('options.pb.c') +env.Match(['options.pb.h', 'options.expected']) + +env.NanopbProto("proto3_options") +env.Object('proto3_options.pb.c') +env.Match(['proto3_options.pb.h', 'proto3_options.expected']) + |