mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2026-03-23 19:08:51 +08:00
* fix scons --target=cmake command failure * fix scons --menuconfig scons: Reading SConscript files ... Cannot found RT-Thread root directory, please check RTT_ROOT
21 lines
474 B
Python
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')
|