Files
luban-lite/bsp/peripheral/encoder/SConscript

17 lines
329 B
Python
Raw Normal View History

2025-07-22 11:15:46 +08:00
Import('AIC_ROOT')
Import('PRJ_KERNEL')
from building import *
cwd = GetCurrentDir()
src = Glob('*.c')
CPPPATH = []
if GetDepend('AIC_ENCODER_HEC40'):
CPPPATH.append(cwd)
CPPPATH.append(cwd + '/hec40')
src += Glob('hec40/*.c')
group = DefineGroup('encoder', src, depend = [''], CPPPATH = CPPPATH)
Return('group')