| 1234567891011121314151617181920212223242526272829303132 |
- import os
- from building import *
- objs = []
- cwd = GetCurrentDir()
- # add general drivers
- src = []
- path = [cwd]
- if GetDepend(['BSP_USING_QSPI_FLASH']):
- src += Glob('drv_qspi_flash.c')
- if GetDepend(['RT_USING_FAL']):
- src += Glob('qspi_mnt.c')
- if GetDepend(['BSP_USING_LCD_OTM8009A']):
- src += Glob('drv_otm8009a.c')
- if GetDepend(['BSP_USING_SDCARD']):
- src += Glob('drv_sdcard.c')
- CPPDEFINES = ['STM32F469xx']
- group = DefineGroup('Drivers', src, depend = [''], CPPPATH = path, CPPDEFINES = CPPDEFINES)
- 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')
|