4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-14 21:09:35 +08:00
2018-12-08 10:47:28 +08:00

15 lines
262 B
Python

# RT-Thread building script for component
from building import *
cwd = GetCurrentDir()
src = Split('''
src/fsl_sd.c
src/fsl_sdmmc.c
''')
CPPPATH = [cwd + '/inc']
group = DefineGroup('Libraries', src, depend = [''], CPPPATH = CPPPATH)
Return('group')