[building] rename the group name: LIBADT to Utilities. (#10267)

* [building] rename the group name: LIBADT to Utilities.
This commit is contained in:
Bernard Xiong 2025-05-16 07:31:18 +08:00 committed by GitHub
parent 33a719db63
commit 50998f4e43
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 6 additions and 6 deletions

View File

@ -5,6 +5,6 @@ src = []
if GetDepend("RT_USING_SMP"):
src += Glob('*.c')
CPPPATH = [cwd]
group = DefineGroup('smp', src, depend = [''], CPPPATH = CPPPATH)
group = DefineGroup('DeviceDrivers', src, depend = [''], CPPPATH = CPPPATH)
Return('group')

View File

@ -5,5 +5,5 @@ src = Glob('*.c')
CPPPATH = [cwd]
group = []
group = DefineGroup('LIBADT', src, depend = ['RT_USING_ADT_AVL'], CPPPATH = CPPPATH)
group = DefineGroup('Utilities', src, depend = ['RT_USING_ADT_AVL'], CPPPATH = CPPPATH)
Return('group')

View File

@ -5,5 +5,5 @@ src = list()
CPPPATH = [cwd]
group = []
group = DefineGroup('LIBADT', src, depend = ['RT_USING_ADT_BITMAP'], CPPPATH = CPPPATH)
group = DefineGroup('Utilities', src, depend = ['RT_USING_ADT_BITMAP'], CPPPATH = CPPPATH)
Return('group')

View File

@ -5,5 +5,5 @@ src = list()
CPPPATH = [cwd]
group = []
group = DefineGroup('LIBADT', src, depend = ['RT_USING_ADT_HASHMAP'], CPPPATH = CPPPATH)
group = DefineGroup('Utilities', src, depend = ['RT_USING_ADT_HASHMAP'], CPPPATH = CPPPATH)
Return('group')

View File

@ -5,5 +5,5 @@ src = list()
CPPPATH = [cwd]
group = []
group = DefineGroup('LIBADT', src, depend = ['RT_USING_ADT_REF'], CPPPATH = CPPPATH)
group = DefineGroup('Utilities', src, depend = ['RT_USING_ADT_REF'], CPPPATH = CPPPATH)
Return('group')

View File

@ -5,5 +5,5 @@ src = Glob('*.c')
CPPPATH = [cwd]
group = []
group = DefineGroup('LIBADT', src, depend = [], CPPPATH = CPPPATH)
group = DefineGroup('Utilities', src, depend = [], CPPPATH = CPPPATH)
Return('group')