Files
xiuos/Ubiquitous/RT-Thread_Fusion_XiUOS/aiit_board/aiit-arm32-board/SConscript
yl1185 fcdb1d8b62 Ubiquitous/RT-Thread/:add atti-arm32-board bsp
1.Modify the peripheral interface of the development board
2.Complete configuration files and build files
3.GCC is supported
2022-04-02 10:51:23 +08:00

16 lines
316 B
Python

# for module compiling
import os
Import('RTT_ROOT')
from building import *
cwd = GetCurrentDir()
objs = []
list = os.listdir(cwd)
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')