chore(rt-thread) backport fixes from v9 (#3604)

https://github.com/lvgl/lvgl/pull/3566
https://github.com/lvgl/lvgl/pull/3467
This commit is contained in:
Man, Jianting (Meco)
2022-08-21 20:42:32 -04:00
committed by GitHub
parent 5156ee058d
commit 660464c973
4 changed files with 37 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
from building import *
cwd = GetCurrentDir()
group = []
src = []
CPPPATH =[]
src += Glob(cwd + '/ui/*.c')
CPPPATH += [cwd+'/ui']
group = group + DefineGroup('LVGL-SquareLine', src, depend = ['PKG_USING_LVGL_SQUARELINE'], CPPPATH = CPPPATH)
Return('group')