[tools] add more c++ src file type

This commit is contained in:
liuchao
2024-12-12 10:28:42 +08:00
committed by Meco Man
parent b81d73e847
commit 827daef863
4 changed files with 4 additions and 4 deletions

View File

@@ -40,7 +40,7 @@ SConscript_com = '''# RT-Thread building script for component
from building import *
cwd = GetCurrentDir()
src = Glob('*.c') + Glob('*.cpp')
src = Glob('*.c') + Glob('*.cpp') + Glob('*.cxx') + Glob('*.cc')
CPPPATH = [cwd]
group = DefineGroup('COMPONENT_NAME', src, depend = [''], CPPPATH = CPPPATH)