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

@@ -4,6 +4,6 @@ cwd = GetCurrentDir()
src = Glob('*.c')
CPPPATH = [cwd]
group = DefineGroup('libcpu', src, depend = [''], CPPPATH = CPPPATH)
group = DefineGroup('CPU', src, depend = [''], CPPPATH = CPPPATH)
Return('group')