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

16 lines
313 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 + '/inc']
src = []
if GetDepend('AIC_USING_IPMANAGER'):
src = Glob('src/*.c')
group = DefineGroup('aic_ipmanager', src, depend = ['AIC_USING_IPMANAGER'], CPPPATH = CPPPATH)
Return('group')