Browse Source

Merge pull request #221 from grissiom/more-tc

TC: if TC is enabled, add the TC dir to CPPPATH
Bernard Xiong 11 years ago
parent
commit
259baec238
1 changed files with 3 additions and 1 deletions
  1. 3 1
      examples/kernel/SConscript

+ 3 - 1
examples/kernel/SConscript

@@ -34,6 +34,8 @@ memp_simple.c
 tc_sample.c
 """)
 
-group = DefineGroup('examples', src, depend = ['RT_USING_TC'])
+group = DefineGroup('examples', src,
+                    depend = ['RT_USING_TC'],
+                    CPPPATH=[GetCurrentDir()])
 
 Return('group')