Make tests build in a separate folder, add to gitignore

This commit is contained in:
Petteri Aimonen
2013-11-13 22:10:42 +02:00
parent 171d64734a
commit 5813144246
17 changed files with 61 additions and 51 deletions

View File

@@ -1,5 +1,5 @@
# Build and run the stand-alone unit tests for the nanopb encoder part.
Import('env')
p = env.Program(["encode_unittests.c", "#common/unittestproto.pb.c"])
p = env.Program(["encode_unittests.c", "$COMMON/unittestproto.pb.c"])
env.RunTest(p)