From 5813144246f8f132f90bea117e578477914be0ea Mon Sep 17 00:00:00 2001 From: Petteri Aimonen Date: Wed, 13 Nov 2013 22:10:42 +0200 Subject: Make tests build in a separate folder, add to gitignore --- tests/encode_unittests/SConscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/encode_unittests') diff --git a/tests/encode_unittests/SConscript b/tests/encode_unittests/SConscript index 7509ec0..bf6d140 100644 --- a/tests/encode_unittests/SConscript +++ b/tests/encode_unittests/SConscript @@ -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) -- cgit 1.2.3-korg