18 lines
430 B
Python
Raw Normal View History

2021-10-18 14:09:03 -04:00
from building import *
2021-11-17 18:38:08 -05:00
import os
2021-10-18 14:09:03 -04:00
cwd = GetCurrentDir()
2021-11-17 18:38:08 -05:00
group = []
2021-10-18 14:09:03 -04:00
src = Glob('*.c')
CPPPATH = [cwd]
2021-11-17 18:38:08 -05:00
list = os.listdir(cwd)
for d in list:
path = os.path.join(cwd, d)
if os.path.isfile(os.path.join(path, 'SConscript')):
group = group + SConscript(os.path.join(d, 'SConscript'))
group = group + DefineGroup('LVGL-demo', src, depend = ['BSP_USING_LVGL', 'BSP_USING_LVGL_DEMO'], CPPPATH = CPPPATH)
2021-10-18 14:09:03 -04:00
Return('group')