mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-17 01:43:32 +08: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')
|