Reorganize Group names in build system for clarity and IDE integration #10923

This commit is contained in:
Copilot
2025-11-16 11:40:53 +08:00
committed by GitHub
parent ae2a5758bc
commit 30e1e5e9dc
84 changed files with 84 additions and 84 deletions

View File

@@ -18,6 +18,6 @@ if rtconfig.PLATFORM in ['gcc']:
if rtconfig.PLATFORM in ['iccarm']:
src += Glob('*_iar.S')
group = DefineGroup('libcpu', src, depend = [''], CPPPATH = CPPPATH)
group = DefineGroup('CPU', src, depend = [''], CPPPATH = CPPPATH)
Return('group')