Files
rt-thread/bsp/stm32/stm32h743-openmv-h7plus/SConscript

20 lines
455 B
Python

# for module compiling
import os
Import('env')
from building import *
cwd = GetCurrentDir()
objs = []
list = os.listdir(cwd)
# STM32H743xx || STM32H750xx || STM32F753xx || STM32H723xx
# You can select chips from the list above
env.Append(CPPDEFINES = ['STM32H743xx'])
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'))
Return('objs')