4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-21 05:23:35 +08:00

19 lines
457 B
Python
Raw Normal View History

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