添加 405 iap 主工程

Signed-off-by: a1012112796 <1012112796@qq.com>
This commit is contained in:
2024-07-24 08:14:57 +08:00
parent 007ad1dda6
commit b1d8ce2643
28 changed files with 6327 additions and 0 deletions

15
MDK_405_iap/SConscript Normal file
View File

@@ -0,0 +1,15 @@
# 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')