|
@@ -1,21 +1,17 @@
|
|
|
-# RT-Thread building script for component
|
|
|
-
|
|
|
from building import *
|
|
|
+import os
|
|
|
Import('rtconfig')
|
|
|
|
|
|
-cwd = GetCurrentDir()
|
|
|
-src = Glob('*.cpp') + Glob('*.c')
|
|
|
+cwd = GetCurrentDir()
|
|
|
+src = ['cxx_crt_init.c', 'cxx_crt.cpp']
|
|
|
CPPPATH = [cwd]
|
|
|
|
|
|
-if GetDepend('RT_USING_CPLUSPLUS11'):
|
|
|
- src += Glob('cpp11/*.cpp') + Glob('cpp11/*.c')
|
|
|
- if rtconfig.PLATFORM in ['armclang']:
|
|
|
- src += Glob('cpp11/armclang/*.cpp') + Glob('cpp11/armclang/*.c')
|
|
|
- CPPPATH += [cwd + '/cpp11/armclang']
|
|
|
- elif rtconfig.PLATFORM in ['gcc']:
|
|
|
- src += Glob('cpp11/gcc/*.cpp') + Glob('cpp11/gcc/*.c')
|
|
|
- CPPPATH += [cwd + '/cpp11/gcc']
|
|
|
+group = DefineGroup('CPP', src, depend=['RT_USING_CPLUSPLUS'], CPPPATH=CPPPATH)
|
|
|
|
|
|
-group = DefineGroup('CPlusPlus', src, depend = ['RT_USING_CPLUSPLUS'], CPPPATH = CPPPATH)
|
|
|
+list = os.listdir(cwd)
|
|
|
+for d in list:
|
|
|
+ path = os.path.join(cwd, d)
|
|
|
+ if os.path.isfile(os.path.join(path, 'SConscript')):
|
|
|
+ group = group + SConscript(os.path.join(d, 'SConscript'))
|
|
|
|
|
|
Return('group')
|