mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-20 23:53:31 +08:00
17 lines
313 B
Python
17 lines
313 B
Python
|
Import('RTT_ROOT')
|
||
|
from building import *
|
||
|
|
||
|
src = Split("""
|
||
|
block_dev.c
|
||
|
mmcsd_core.c
|
||
|
sd.c
|
||
|
""")
|
||
|
|
||
|
# The set of source files associated with this SConscript file.
|
||
|
path = [RTT_ROOT + '/components/mmcsd']
|
||
|
|
||
|
|
||
|
group = DefineGroup('MMCSD', src, depend = ['RT_USING_MMCSD'], CPPPATH = path)
|
||
|
|
||
|
Return('group')
|