Files
luban-lite-t3e-pro/bsp/common/SConscript
刘可亮 9f7ba67007 v1.0.3
2024-01-27 08:47:24 +08:00

15 lines
320 B
Python

Import('AIC_ROOT')
Import('PRJ_KERNEL')
from building import *
cwd = GetCurrentDir()
src = Glob('*.c')
src += Glob('partition/*.c')
src += Glob('private_param/*.c')
src += Glob('crc32/*.c')
CPPPATH = [cwd + '/include', ]
group = DefineGroup('aic_driver_common', src, depend = [''], CPPPATH = CPPPATH)
Return('group')