12345678910111213141516171819202122232425 |
- import os
- from building import *
- cwd = GetCurrentDir()
- # add the general drivers.
- src = Glob('board.c')
- src += Glob('CubeMX_Config/Src/stm32f7xx_hal_msp.c')
- path = [cwd]
- path += [cwd + '/CubeMX_Config/Inc']
- group = DefineGroup('Drivers', src, depend = [''], CPPPATH = path)
- # if os.path.isfile(os.path.join(cwd, "ports", 'SConscript')):
- # group = group + SConscript(os.path.join("ports", 'SConscript'))
- list = os.listdir(cwd)
- for item in list:
- if os.path.isfile(os.path.join(cwd, item, 'SConscript')):
- group = group + SConscript(os.path.join(item, 'SConscript'))
- Return('group')
|