4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-18 03:43:46 +08:00

13 lines
213 B
Python
Raw Normal View History

from building import *
Import('rtconfig')
src = Glob('*.c')
cwd = GetCurrentDir()
group = []
CPPPATH = [cwd]
group = DefineGroup('libc', src, depend = ['RT_USING_LIBC'], CPPPATH = CPPPATH)
Return('group')