mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-14 02:18:54 +00:00
16 lines
313 B
Python
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')
|