30 lines
646 B
Python
30 lines
646 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)
|
||
|
src = []
|
||
|
|
||
|
group = DefineGroup('codec', src, depend = [''], CPPPATH = 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'))
|
||
|
|
||
|
objs += group
|
||
|
Return('objs')
|