from building import * cwd = GetCurrentDir() # add general drivers src = Split(''' board.c CubeMX_Config/Src/stm32l4xx_hal_msp.c ''') if GetDepend(['BSP_USING_ON_CHIP_FLASH']): src += Glob('mnt.c') path = [cwd] path += [cwd + '/CubeMX_Config/Inc'] path += [cwd + '/ports'] CPPDEFINES = ['STM32L496xx'] 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')