Files
luban-lite-t3e-pro/packages/artinchip/ota/SConscript
刘可亮 8bca5e8332 v1.0.4
2024-04-03 16:40:57 +08:00

17 lines
277 B
Python

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')