1from building import * 2 3src = [] 4 5if GetDepend('RT_UTEST_USING_ALL_CASES') or GetDepend('RT_UTEST_TC_USING_KLIBC'): 6 src += Glob('TC_*.c') 7 8group = DefineGroup('utestcases', src, depend = ['']) 9 10Return('group') 11