Files
luban-lite-t3e-pro/packages/artinchip/ota/SConscript

17 lines
293 B
Python
Raw Normal View History

2025-09-30 11:56:06 +08:00
Import('AIC_ROOT')
Import('PRJ_KERNEL')
from building import *
cwd = GetCurrentDir()
CPPPATH = [cwd]
src = []
group = []
if GetDepend('LPKG_USING_OTA_DOWNLOADER'):
src = Glob('*.c')
group = DefineGroup('ota', src, depend = [''], CPPPATH = CPPPATH)
Return('group')