Browse Source

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

* [building] rename the group name: LIBADT to Utilities.
Bernard Xiong 1 month ago
parent
commit
50998f4e43

+ 1 - 1
components/drivers/smp_call/SConscript

@@ -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')

+ 1 - 1
components/utilities/libadt/avl/SConscript

@@ -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')

+ 1 - 1
components/utilities/libadt/bitmap/SConscript

@@ -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')

+ 1 - 1
components/utilities/libadt/hashmap/SConscript

@@ -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')

+ 1 - 1
components/utilities/libadt/ref/SConscript

@@ -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')

+ 1 - 1
components/utilities/libadt/uthash/SConscript

@@ -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')