rt-thread-official/bsp/stm32/stm32l475-atk-pandora/applications/lvgl/SConscript

17 lines
399 B
Python
Raw Normal View History

2021-10-19 02:09:03 +08:00
from building import *
2021-11-18 07:38:08 +08:00
import os
2021-10-19 02:09:03 +08:00
cwd = GetCurrentDir()
2021-11-18 07:38:08 +08:00
group = []
2021-10-19 02:09:03 +08:00
src = Glob('*.c')
CPPPATH = [cwd]
2021-11-18 07:38:08 +08: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 += DefineGroup('LVGL-port', src, depend = ['BSP_USING_LVGL'], CPPPATH = CPPPATH)
2021-10-19 02:09:03 +08:00
Return('group')