diff options
author | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2013-11-13 22:10:42 +0200 |
---|---|---|
committer | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2013-11-13 22:10:42 +0200 |
commit | 5813144246f8f132f90bea117e578477914be0ea (patch) | |
tree | 3240f066191fe124d67996f9b8b87dc789476a3f /tests/callbacks | |
parent | 171d64734a34674cd648ac7b8569b4b21285fed4 (diff) |
Make tests build in a separate folder, add to gitignore
Diffstat (limited to 'tests/callbacks')
-rw-r--r-- | tests/callbacks/SConscript | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/callbacks/SConscript b/tests/callbacks/SConscript index 729fd65..9ec8a43 100644 --- a/tests/callbacks/SConscript +++ b/tests/callbacks/SConscript @@ -3,8 +3,8 @@ Import("env") env.NanopbProto("callbacks") -enc = env.Program(["encode_callbacks.c", "callbacks.pb.c", "#common/pb_encode.o"]) -dec = env.Program(["decode_callbacks.c", "callbacks.pb.c", "#common/pb_decode.o"]) +enc = env.Program(["encode_callbacks.c", "callbacks.pb.c", "$COMMON/pb_encode.o"]) +dec = env.Program(["decode_callbacks.c", "callbacks.pb.c", "$COMMON/pb_decode.o"]) env.RunTest(enc) env.RunTest([dec, "encode_callbacks.output"]) |