APP_Framework/lib/:add cJSON library

This commit is contained in:
chunyexixiaoyu
2021-08-04 16:24:16 +08:00
parent 1afdd8c056
commit 3b74443dac
10 changed files with 38 additions and 7 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')