1Import('rtconfig')
2from building import *
3
4cwd     = GetCurrentDir()
5src     = []
6CPPPATH = [cwd]
7
8if GetDepend(['UTEST_COMPLETION_TC']):
9    src += ['completion_tc.c', 'completion_timeout_tc.c']
10
11if GetDepend(['UTEST_WORKQUEUE_TC']):
12    src += ['workqueue_tc.c']
13
14group = DefineGroup('utestcases', src, depend = ['RT_USING_UTESTCASES'], CPPPATH = CPPPATH)
15
16Return('group')
17