mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-21 07:39:21 +08:00
33785ca68a
1. remove gpt. 2. remove block device custom. Signed-off-by: GuEe-GUI <2991707448@qq.com>
19 lines
343 B
Python
19 lines
343 B
Python
Import('RTT_ROOT')
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = Split("""
|
|
dev_block.c
|
|
dev_mmcsd_core.c
|
|
dev_sd.c
|
|
dev_sdio.c
|
|
dev_mmc.c
|
|
""")
|
|
|
|
# The set of source files associated with this SConscript file.
|
|
path = [cwd + '/../include']
|
|
|
|
group = DefineGroup('DeviceDrivers', src, depend = ['RT_USING_SDIO'], CPPPATH = path)
|
|
|
|
Return('group')
|