4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-24 09:37:23 +08:00

11 lines
226 B
Python
Raw Normal View History

2022-05-05 14:21:21 -04:00
from building import *
cwd = GetCurrentDir()
group = []
src = Glob('*.c')
CPPPATH = [cwd]
group = group + DefineGroup('LVGL-demo', src, depend = ['BSP_USING_LVGL', 'BSP_USING_LVGL_DEMO'], CPPPATH = CPPPATH)
Return('group')