mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-15 02:48:54 +00:00
13 lines
241 B
Python
13 lines
241 B
Python
from building import *
|
|
import os
|
|
|
|
cwd = GetCurrentDir()
|
|
group = []
|
|
src = []
|
|
CPPPATH = [cwd]
|
|
|
|
src += Glob('./*.c')
|
|
group = group + DefineGroup('LVGL-port', src, depend = ['AIC_LVGL_BASE_DEMO'], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|