mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-16 18:33:31 +08:00
7 lines
146 B
Python
7 lines
146 B
Python
from building import *
|
|
|
|
src = Glob('*.c')
|
|
group = DefineGroup('UTest', src, depend = ['RT_USING_NEWLIB', 'RT_USING_PTHREADS'])
|
|
|
|
Return('group')
|