Files
rt-thread/bsp/stm32/stm32h723-st-nucleo/SConscript
冥焱破晓 d64ce335fc fix scons --target=cmake command failure (#10276)
* fix scons --target=cmake command failure

* fix scons --menuconfig
scons: Reading SConscript files ...
Cannot found RT-Thread root directory, please check RTT_ROOT
2025-05-21 22:15:04 +08:00

21 lines
474 B
Python

# for module compiling
import os
Import('RTT_ROOT')
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 = ['STM32H723xx'])
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')