APP_Framework/Applications/:add configuration file about TJpgDec example

This commit is contained in:
chunyexixiaoyu
2021-11-17 19:13:46 +08:00
parent 2b69d31744
commit e33b0d0264
5 changed files with 49 additions and 14 deletions

View File

@@ -0,0 +1,14 @@
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(path, 'SConscript'))
Return('objs')