Files
luban-lite-t3e-pro/packages/third-party/dfs/filesystems/elmfat/SConscript

18 lines
379 B
Python
Raw Normal View History

2023-08-30 16:21:18 +08:00
# RT-Thread building script for component
from building import *
cwd = GetCurrentDir()
src = Glob('*.c')
CPPPATH = [cwd]
if GetDepend('AIC_SDMC_DRV'):
src += Glob('sdmc_disk/*.c')
if GetDepend('AIC_USB_DRV'):
src += Glob('usb_disk/*.c')
group = DefineGroup('Filesystem', src, depend = ['LPKG_USING_DFS', 'LPKG_USING_DFS_ELMFAT'], CPPPATH = CPPPATH)
Return('group')