mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-18 08:43:31 +08:00
10 lines
184 B
Python
10 lines
184 B
Python
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
|
|
src = Glob('*.c')
|
|
CPPPATH = [cwd]
|
|
|
|
group = DefineGroup('LVGL-port', src, depend = ['BSP_USING_LVGL'], CPPPATH = CPPPATH)
|
|
Return('group')
|