29 lines
697 B
Python
29 lines
697 B
Python
# RT-Thread building script for component
|
|
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = Glob('*.c') + Glob('*.S')
|
|
CPPPATH = [cwd, str(Dir('#'))]
|
|
|
|
if not GetDepend('RT_USING_I2C'):
|
|
SrcRemove(src, ['drv_i2c.c'])
|
|
if not GetDepend('RT_USING_SPI'):
|
|
SrcRemove(src, ['drv_spi.c'])
|
|
if not GetDepend('RT_USING_WDT'):
|
|
SrcRemove(src, ['drv_reset.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')
|