4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-02-24 19:47:57 +08:00

10 lines
179 B
Python
Raw Normal View History

2021-10-18 14:09:03 -04:00
from building import *
cwd = GetCurrentDir()
src = Glob('*.c')
CPPPATH = [cwd]
group = DefineGroup('LVGL', src, depend = ['BSP_USING_LVGL'], CPPPATH = CPPPATH)
Return('group')