4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-27 15:50:23 +08:00
2015-04-03 14:26:18 +00:00

12 lines
265 B
Python

# RT-Thread building script for component
from building import *
cwd = GetCurrentDir()
src = Glob('*.c')
CPPPATH = [cwd, cwd + '/src/inc']
group = DefineGroup('Filesystem', src, depend = ['RT_USING_DFS', 'RT_USING_DFS_UFFS'], CPPPATH = CPPPATH)
Return('group')