1Import('RTT_ROOT') 2from building import * 3 4cwd = GetCurrentDir() 5src = Split(""" 6block_dev.c 7mmcsd_core.c 8sd.c 9sdio.c 10mmc.c 11""") 12 13# The set of source files associated with this SConscript file. 14path = [cwd + '/../include'] 15 16group = DefineGroup('DeviceDrivers', src, depend = ['RT_USING_SDIO'], CPPPATH = path) 17 18Return('group') 19