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

@@ -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'])