You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
802 B
30 lines
802 B
5 months ago
|
# RT-Thread building script for component
|
||
|
from building import *
|
||
|
|
||
|
cwd = GetCurrentDir()
|
||
|
src = Glob('*.c') + Glob('*.cpp') + Glob('*.a')
|
||
|
CPPPATH = [cwd, str(Dir('#'))]
|
||
|
|
||
|
if not GetDepend('BSP_USING_ETH'):
|
||
|
SrcRemove(src, ['drv_eth.c'])
|
||
|
if not GetDepend('BSP_USING_SPI'):
|
||
|
SrcRemove(src, ['drv_spi.c'])
|
||
|
if not GetDepend('BSP_USING_WDT'):
|
||
|
SrcRemove(src, ['drv_wdt.c'])
|
||
|
if not GetDepend('BSP_USING_BULETOOTH'):
|
||
|
SrcRemove(src, ['drv_bluetooth.c'])
|
||
|
|
||
|
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
|
||
|
|
||
|
# build for sub-directory
|
||
|
list = os.listdir(cwd)
|
||
|
objs = []
|
||
|
|
||
|
for d in list:
|
||
|
path = os.path.join(cwd, d)
|
||
|
if os.path.isfile(os.path.join(path, 'SConscript')):
|
||
|
objs = objs + SConscript(os.path.join(d, 'SConscript'))
|
||
|
group = group + objs
|
||
|
|
||
|
Return('group')
|