mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-16 11:28:54 +00:00
14 lines
301 B
Python
14 lines
301 B
Python
|
|
# RT-Thread building script for component
|
||
|
|
|
||
|
|
from building import *
|
||
|
|
|
||
|
|
cwd = GetCurrentDir()
|
||
|
|
src = Glob('*.c') + Glob('rpc/*.c')
|
||
|
|
CPPPATH = [cwd]
|
||
|
|
|
||
|
|
SrcRemove(src, ['rpc/auth_none.c'])
|
||
|
|
|
||
|
|
group = DefineGroup('Filesystem', src, depend = ['RT_USING_DFS', 'RT_USING_DFS_NFS'], CPPPATH = CPPPATH)
|
||
|
|
|
||
|
|
Return('group')
|