rt-thread-official/components/cplusplus/SConscript

23 lines
707 B
Python
Raw Normal View History

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()
src = Glob('*.cpp') + Glob('*.c')
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']
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')