mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2026-08-18 20:48:41 +08:00
11 lines
167 B
Python
11 lines
167 B
Python
from building import *
|
|
|
|
src = []
|
|
|
|
if GetDepend('RT_UTEST_SELF_PASS'):
|
|
src += Glob('TC_*.c')
|
|
|
|
group = DefineGroup('utc_UTest', src, depend = [''])
|
|
|
|
Return('group')
|