[sconscript] 代替+=的表述方法

This commit is contained in:
Meco Man
2022-01-08 15:48:50 +08:00
committed by Bernard Xiong
parent 29c19f7ffd
commit 85441c0dc4
9 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -12,6 +12,6 @@ for d in list:
if os.path.isfile(os.path.join(path, 'SConscript')):
group = group + SConscript(os.path.join(d, 'SConscript'))
group += DefineGroup('LVGL-port', src, depend = ['BSP_USING_LVGL'], CPPPATH = CPPPATH)
group = group + DefineGroup('LVGL-port', src, depend = ['BSP_USING_LVGL'], CPPPATH = CPPPATH)
Return('group')