Files
luban-lite-t3e-pro/packages/artinchip/ipmanager/SConscript
刘可亮 803cac77d5 V1.0.6
2024-09-03 11:16:08 +08:00

16 lines
298 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')