X-AIOS-LT00-V1.0.4/sdk/X-AIOS-LT00/core/apps/setting/SConscript
2026-01-19 17:23:53 +08:00

18 lines
388 B
Python
Executable File

from building import *
cwd = GetCurrentDir()
src = Glob('*.c')
list = os.listdir(cwd)
CPPPATH = [cwd]
objs = []
group = DefineGroup('qxos', src, depend = [''], CPPPATH = CPPPATH)
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'))
objs = objs + group
Return('objs')