Skip to content

Commit 50998f4

Browse files
authored
[building] rename the group name: LIBADT to Utilities. (#10267)
* [building] rename the group name: LIBADT to Utilities.
1 parent 33a719d commit 50998f4

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

components/drivers/smp_call/SConscript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ src = []
55
if GetDepend("RT_USING_SMP"):
66
src += Glob('*.c')
77
CPPPATH = [cwd]
8-
group = DefineGroup('smp', src, depend = [''], CPPPATH = CPPPATH)
8+
group = DefineGroup('DeviceDrivers', src, depend = [''], CPPPATH = CPPPATH)
99

1010
Return('group')

components/utilities/libadt/avl/SConscript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ src = Glob('*.c')
55
CPPPATH = [cwd]
66
group = []
77

8-
group = DefineGroup('LIBADT', src, depend = ['RT_USING_ADT_AVL'], CPPPATH = CPPPATH)
8+
group = DefineGroup('Utilities', src, depend = ['RT_USING_ADT_AVL'], CPPPATH = CPPPATH)
99
Return('group')

components/utilities/libadt/bitmap/SConscript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ src = list()
55
CPPPATH = [cwd]
66
group = []
77

8-
group = DefineGroup('LIBADT', src, depend = ['RT_USING_ADT_BITMAP'], CPPPATH = CPPPATH)
8+
group = DefineGroup('Utilities', src, depend = ['RT_USING_ADT_BITMAP'], CPPPATH = CPPPATH)
99
Return('group')

components/utilities/libadt/hashmap/SConscript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ src = list()
55
CPPPATH = [cwd]
66
group = []
77

8-
group = DefineGroup('LIBADT', src, depend = ['RT_USING_ADT_HASHMAP'], CPPPATH = CPPPATH)
8+
group = DefineGroup('Utilities', src, depend = ['RT_USING_ADT_HASHMAP'], CPPPATH = CPPPATH)
99
Return('group')

components/utilities/libadt/ref/SConscript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ src = list()
55
CPPPATH = [cwd]
66
group = []
77

8-
group = DefineGroup('LIBADT', src, depend = ['RT_USING_ADT_REF'], CPPPATH = CPPPATH)
8+
group = DefineGroup('Utilities', src, depend = ['RT_USING_ADT_REF'], CPPPATH = CPPPATH)
99
Return('group')

components/utilities/libadt/uthash/SConscript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ src = Glob('*.c')
55
CPPPATH = [cwd]
66
group = []
77

8-
group = DefineGroup('LIBADT', src, depend = [], CPPPATH = CPPPATH)
8+
group = DefineGroup('Utilities', src, depend = [], CPPPATH = CPPPATH)
99
Return('group')

0 commit comments

Comments
 (0)