4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-18 11:53:53 +08:00

10 lines
184 B
Python
Raw Normal View History

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