rt-thread/bsp/stm32/stm32f469-st-disco/applications/lvgl/SConscript

19 lines
457 B
Python
Raw Normal View History

2021-11-11 14:44:42 +08:00
import os
2021-12-20 07:42:29 +08:00
from building import *
cwd = GetCurrentDir()
2021-11-18 07:38:08 +08:00
group = []
src = Glob('*.c')
CPPPATH = [cwd]
2021-11-11 13:32:48 +08:00
CPPDEFINES = ['STM32F4']
2021-11-18 07:53:52 +08:00
2021-11-11 14:44:42 +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')):
2021-11-18 07:38:08 +08:00
group = group + SConscript(os.path.join(d, 'SConscript'))
2021-11-11 13:32:48 +08:00
2022-01-07 16:56:50 +08:00
group = group + DefineGroup('LVGL-port', src, depend = ['BSP_USING_LVGL'], CPPPATH = CPPPATH, CPPDEFINES = CPPDEFINES)
2021-11-11 14:44:42 +08:00
2021-11-18 07:38:08 +08:00
Return('group')