diff options
author | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2013-11-23 11:04:12 +0200 |
---|---|---|
committer | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2013-12-29 20:26:58 +0200 |
commit | 1fc90ab4c4731ab521ee7f6b4f1f936f76520e2e (patch) | |
tree | 4d710c7fc45c3a7a3c71357491d54fbd8a096690 /tests/SConstruct | |
parent | 440a53f85965f35cd7bc401ef7e3fb9c4dfd1390 (diff) |
Add a SCons tool for nanopb protos.
This tool script is useful both for building the tests and also for use in other applications.
Diffstat (limited to 'tests/SConstruct')
-rw-r--r-- | tests/SConstruct | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/SConstruct b/tests/SConstruct index 675989a0..a44ee55f 100644 --- a/tests/SConstruct +++ b/tests/SConstruct @@ -14,7 +14,7 @@ scons CC=clang CXX=clang++ ''') import os -env = Environment(ENV = os.environ) +env = Environment(ENV = os.environ, tools = ['default', 'nanopb']) # Allow overriding the compiler with scons CC=??? if 'CC' in ARGUMENTS: env.Replace(CC = ARGUMENTS['CC']) |