Files
luban-lite-t3e-pro/packages/artinchip/ipmanager/SConscript
2025-09-30 11:56:06 +08:00

16 lines
313 B
Python

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