mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-14 10:28:54 +00:00
12 lines
233 B
Python
12 lines
233 B
Python
Import('AIC_ROOT')
|
|
Import('PRJ_KERNEL')
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = Glob('*.c')
|
|
CPPPATH = [cwd + '/include', ]
|
|
|
|
group = DefineGroup('aic_driver_common', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|