rt-thread/bsp/imxrt/imxrt1060-nxp-evk/applications/lvgl/squareline/SConscript

14 lines
278 B
Python
Raw Normal View History

2022-05-06 02:21:21 +08:00
from building import *
cwd = GetCurrentDir()
2022-05-13 13:01:09 +08:00
group = []
src = []
CPPPATH =[]
src += Glob(cwd + '/ui/*.c')
CPPPATH += [cwd+'/ui']
2022-05-06 02:21:21 +08:00
2022-05-13 13:01:09 +08:00
group = group + DefineGroup('LVGL-SquareLine', src, depend = ['BSP_USING_LVGL', 'BSP_USING_LVGL_SQUARELINE'], CPPPATH = CPPPATH)
2022-05-06 02:21:21 +08:00
2022-05-13 13:01:09 +08:00
Return('group')