• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1from building import *
2
3cwd = GetCurrentDir()
4src	= Glob('*.c')
5CPPPATH = [cwd]
6
7# remove no need file.
8#if GetDepend('RT_USING_LWIP') == False:
9#    SrcRemove(src, 'stm32f2_eth.c')
10#if GetDepend('RT_USING_DFS') == False:
11#    SrcRemove(src, 'sdio_sd.c')
12
13#remove other no use files
14#SrcRemove(src, 'FM25Lx.c')
15#SrcRemove(src, '24LCxx.c')
16
17group = DefineGroup('usb_dbg', src, depend = [''], CPPPATH = CPPPATH)
18
19Return('group')
20