4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-14 12:19:20 +08:00

15 lines
262 B
Python
Raw Normal View History

2018-12-08 10:47:28 +08:00
# 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')