2011-10-23 17:46:20 +08:00
|
|
|
Import('RTT_ROOT')
|
|
|
|
from building import *
|
|
|
|
|
2012-02-18 23:04:19 +08:00
|
|
|
cwd = GetCurrentDir()
|
2011-10-23 17:46:20 +08:00
|
|
|
src = Split("""
|
|
|
|
block_dev.c
|
|
|
|
mmcsd_core.c
|
|
|
|
sd.c
|
2012-02-29 00:40:40 +08:00
|
|
|
sdio.c
|
2011-10-23 17:46:20 +08:00
|
|
|
""")
|
|
|
|
|
|
|
|
# The set of source files associated with this SConscript file.
|
2012-07-08 22:43:08 +08:00
|
|
|
path = [cwd + '/../include']
|
2011-10-23 17:46:20 +08:00
|
|
|
|
2012-02-19 17:10:07 +08:00
|
|
|
group = DefineGroup('DeviceDrivers', src, depend = ['RT_USING_SDIO'], CPPPATH = path)
|
2011-10-23 17:46:20 +08:00
|
|
|
|
|
|
|
Return('group')
|