4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-19 05:04:42 +08:00

21 lines
454 B
Python
Raw Normal View History

# RT-Thread building script for component
from building import *
cwd = GetCurrentDir()
src = Glob('*.c')
SrcRemove(src, ['sdmmc_part.c'])
CPPPATH = [cwd]
group = DefineGroup('Drivers', src, depend = ['BSP_USING_SDMMC'], CPPPATH = CPPPATH)
objs = [group]
list = os.listdir(cwd)
for item in list:
if os.path.isfile(os.path.join(cwd, item, 'SConscript')):
objs = objs + SConscript(os.path.join(item, 'SConscript'))
Return('objs')