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