mirror of
https://github.com/lvgl/lvgl.git
synced 2025-01-28 07:03:00 +08:00
11 lines
202 B
Python
11 lines
202 B
Python
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = ['lv_ui_entry.c']
|
|
|
|
src += Glob(cwd + '/ui/*.c')
|
|
|
|
group = DefineGroup('LVGL-SquareLine', src, depend = ['PKG_USING_LVGL_SQUARELINE'])
|
|
|
|
Return('group')
|