26 lines
558 B
Python
26 lines
558 B
Python
#
|
|
# File : SConscript for Commercial Components
|
|
# This file is part of RT-Thread RTOS
|
|
# COPYRIGHT (C) 2012, Shanghai Real-Thread Technology Co., Ltd
|
|
#
|
|
# All rights reserved.
|
|
#
|
|
# Change Logs:
|
|
# Date Author Notes
|
|
# 2012-02-18 Bernard the first version
|
|
#
|
|
|
|
import os
|
|
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')
|