2014-11-01 09:09:21 +08:00
|
|
|
# RT-Thread building script for component
|
|
|
|
|
|
|
|
from building import *
|
2021-09-03 11:38:48 +08:00
|
|
|
Import('rtconfig')
|
2014-11-01 09:09:21 +08:00
|
|
|
|
|
|
|
cwd = GetCurrentDir()
|
2014-11-01 14:12:58 +08:00
|
|
|
src = Glob('*.cpp') + Glob('*.c')
|
2017-01-31 13:19:18 +08:00
|
|
|
|
2021-09-03 11:38:48 +08:00
|
|
|
if GetDepend('RT_USING_CPLUSPLUS11'):
|
|
|
|
src += Glob('cpp11/*.cpp') + Glob('cpp11/*.c')
|
|
|
|
|
2014-11-01 09:09:21 +08:00
|
|
|
CPPPATH = [cwd]
|
|
|
|
|
2021-09-03 11:38:48 +08:00
|
|
|
if rtconfig.PLATFORM == 'armclang' and GetDepend('RT_USING_CPLUSPLUS11'):
|
|
|
|
src += Glob('cpp11/armclang/*.cpp') + Glob('cpp11/armclang/*.c')
|
|
|
|
CPPPATH += [cwd + '/cpp11/armclang']
|
|
|
|
elif rtconfig.PLATFORM == 'gcc' and GetDepend('RT_USING_CPLUSPLUS11'):
|
|
|
|
src += Glob('cpp11/gcc/*.cpp') + Glob('cpp11/gcc/*.c')
|
|
|
|
CPPPATH += [cwd + '/cpp11/gcc']
|
|
|
|
|
2015-11-15 16:36:57 +08:00
|
|
|
group = DefineGroup('CPlusPlus', src, depend = ['RT_USING_CPLUSPLUS'], CPPPATH = CPPPATH)
|
2014-11-01 09:09:21 +08:00
|
|
|
|
2021-09-03 11:38:48 +08:00
|
|
|
Return('group')
|