Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
13 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion components/drivers/smp_call/SConscript
Original file line number Diff line number Diff line change
Expand Up @@ -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')
2 changes: 1 addition & 1 deletion components/utilities/libadt/avl/SConscript
Original file line number Diff line number Diff line change
Expand Up @@ -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')
2 changes: 1 addition & 1 deletion components/utilities/libadt/bitmap/SConscript
Original file line number Diff line number Diff line change
Expand Up @@ -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')
2 changes: 1 addition & 1 deletion components/utilities/libadt/hashmap/SConscript
Original file line number Diff line number Diff line change
Expand Up @@ -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')
2 changes: 1 addition & 1 deletion components/utilities/libadt/ref/SConscript
Original file line number Diff line number Diff line change
Expand Up @@ -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')
2 changes: 1 addition & 1 deletion components/utilities/libadt/uthash/SConscript
Original file line number Diff line number Diff line change
Expand Up @@ -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')