mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-16 04:19:22 +08:00
f01f25b451
git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1087 bbd45198-f89e-11dd-88c7-29a3b14d5316
7 lines
156 B
Python
7 lines
156 B
Python
from building import *
|
|
|
|
src = Glob('*.c')
|
|
group = DefineGroup('libc_test', src, depend = ['RT_USING_NEWLIB', 'RT_USING_PTHREADS'])
|
|
|
|
Return('group')
|