SConscript 338 字节
Newer Older
1 2 3
Import('RTT_ROOT')
from building import *

B
bernard.xiong@gmail.com 已提交
4
cwd = GetCurrentDir()
5 6 7 8
src = Split("""
block_dev.c
mmcsd_core.c
sd.c
L
luohui2320@gmail.com 已提交
9
sdio.c
10 11 12
""")

# The set of source files associated with this SConscript file.
13
path = [cwd + '/../include']
14

15
group = DefineGroup('DeviceDrivers', src, depend = ['RT_USING_SDIO'], CPPPATH = path)
16 17

Return('group')