10 lines
181 B
Python
10 lines
181 B
Python
|
import rtconfig
|
||
|
|
||
|
from building import *
|
||
|
|
||
|
src = Glob('*.c')
|
||
|
src += Glob('assets/*.c')
|
||
|
|
||
|
group = DefineGroup('LVGL-demo', src, depend = ['BSP_USING_LVGL_STRESS_DEMO'])
|
||
|
|
||
|
Return('group')
|