14 lines
306 B
Python
14 lines
306 B
Python
|
Import('rtconfig')
|
||
|
from building import *
|
||
|
|
||
|
cwd = GetCurrentDir()
|
||
|
src = []
|
||
|
CPPPATH = [cwd]
|
||
|
|
||
|
if GetDepend(['UTEST_COMPLETION_TC']):
|
||
|
src += ['completion_tc.c', 'completion_timeout_tc.c']
|
||
|
|
||
|
group = DefineGroup('utestcases', src, depend = ['RT_USING_UTESTCASES'], CPPPATH = CPPPATH)
|
||
|
|
||
|
Return('group')
|